brotherton-erpnext/erpnext/controllers/tests
Ankush Menat a3ea985348
refactor: Use db.set_single_value (#35668)
I just applied semgrep autofix. Untested completed, review before merging.

```yaml
- id: frappe-set-value-semantics
  patterns:
    - pattern-either:
      - pattern: frappe.db.set_value($DOCTYPE, None, $...AFTER)
      - pattern: frappe.db.set_value($DOCTYPE, $DOCTYPE, $...AFTER)
  fix: frappe.db.set_single_value($DOCTYPE, $...AFTER)
  message: |
    If $DOCTYPE is a single doctype then using `frappe.db.set_value` is discouraged for setting values in DB. Use db.set_single_value for single doctype instead.
  languages: [python]
  severity: ERROR
```
2023-06-13 17:30:38 +05:30
..
__init__.py [fix] removed bad import 2016-06-09 16:56:54 +05:30
test_item_variant.py style: format code with black 2022-03-28 18:52:46 +05:30
test_mapper.py style: format code with black 2022-03-28 18:52:46 +05:30
test_qty_based_taxes.py style: format code with black 2022-03-28 18:52:46 +05:30
test_queries.py fix: ignore empty customer/supplier in item query (#29610) 2022-02-03 13:02:13 +05:30
test_subcontracting_controller.py refactor: Use db.set_single_value (#35668) 2023-06-13 17:30:38 +05:30
test_transaction_base.py style: format code with black 2022-03-28 18:52:46 +05:30