diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-09-27 15:22:14 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-09-27 15:28:14 +0200 |
commit | ad392818e9e11708ef1e930a300aaf25672f09cb (patch) | |
tree | 50d6a65665a21eee0b52aff639232c49c86fcafd | |
parent | 5d33e567c5a0f1271e12f845c34b1b9965d9a2c0 (diff) | |
download | Ishtar-ad392818e9e11708ef1e930a300aaf25672f09cb.tar.bz2 Ishtar-ad392818e9e11708ef1e930a300aaf25672f09cb.zip |
✅ fix API sheet filter tests
-rw-r--r-- | archaeological_operations/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index cf3cfb4a6..1c2623389 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -4938,4 +4938,4 @@ class ApiTest(OperationInitTest, APITestCase): ) self.assertEqual(response.status_code, 200) j = json.loads(response.content.decode()) - self.assertIsNone(j.get("cached_label", None)) + self.assertEqual(j.get("cached_label", ""), "") |