Skip to content

Commit 1a2c048

Browse files
committed
change e-tag from response body to response header2
1 parent f630fe8 commit 1a2c048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/tests/test_fhir_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ def test_update_immunization(self,mock_get_permissions):
10661066
)
10671067
mock_get_permissions.assert_called_once_with("Test")
10681068
self.assertEqual(response["statusCode"], 200)
1069-
self.assertEqual( response["headers"]["E-Tag"], 2)
1069+
self.assertEqual(response["headers"]["E-Tag"], 2)
10701070

10711071
@patch("fhir_controller.get_supplier_permissions")
10721072
def test_update_immunization_etag_missing(self, mock_get_supplier_permissions):

0 commit comments

Comments
 (0)