brotherton-erpnext/erpnext/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 style: format code with black 2022-03-28 18:52:46 +05:30
exotel_test_data.py test: Fix erroneous code 2022-04-04 09:31:15 +05:30
test_activation.py test: activation 2022-05-05 11:02:23 +05:30
test_exotel.py refactor: Use db.set_single_value (#35668) 2023-06-13 17:30:38 +05:30
test_init.py test: verify that all patches exist in patches.txt (#31371) 2022-06-16 22:15:06 +05:30
test_notifications.py style: format code with black 2022-03-28 18:52:46 +05:30
test_point_of_sale.py style: format code with black 2022-03-28 18:52:46 +05:30
test_regional.py Merge remote-tracking branch 'upstream/develop' into remove-india 2022-06-19 22:57:22 +05:30
test_webform.py style: format code with black 2022-03-28 18:52:46 +05:30
test_zform_loads.py style: format code with black 2022-03-28 18:52:46 +05:30
utils.py style: format code with black 2022-03-28 18:52:46 +05:30