Skip to content

Commit

Permalink
fix(test error)
Browse files Browse the repository at this point in the history
  • Loading branch information
basarbyz committed Oct 7, 2024
1 parent 804161a commit 3985b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def test_update(self):

# Ensure the response indicates failure
self.assertFalse(response1.ok)
self.assertEqual(response1.status_code, 400)
self.assertEqual(response1.status_code, 422)
self.assertIn("entity_id, entity_type, and attribute_name cannot be null", response1.text)

print(f"Datapoint basis: {datapoint_basis}")
Expand Down

0 comments on commit 3985b74

Please sign in to comment.