home · contact · privacy
Re-organize and extend POST/GET /day tests.
[plomtask] / tests / conditions.py
index 9fcb68cea14a0956be1e290e4e189d3ddbf0533c..bf04f7b674b84ab2dcad9ebe349400809d449187 100644 (file)
@@ -78,7 +78,7 @@ class TestsWithServer(TestCaseWithServer):
         self.check_post(valid_payload, '/condition?id=foo', 400)
 
     def test_do_POST_condition(self) -> None:
-        """Test POST /condition and its effect on GET /condition[s]."""
+        """Test (valid) POST /condition and its effect on GET /condition[s]."""
         # test valid POST's effect on …
         post = {'title': 'foo', 'description': 'oof', 'is_active': False}
         self.check_post(post, '/condition', 302, '/condition?id=1')