Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
danangmassandy committed Oct 3, 2024
1 parent 508647d commit 1486ce9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions django_project/georepo/tests/test_search_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ def test_process_search_id_request(self):
f = id_request.output_file.open()
data = json.load(f)
# match the uuid and concept_uuid from PAK_V2
self.assertEqual(str(self.pak0_2.uuid), data['PAK'][0]['concept_uuid'])
self.assertEqual(str(self.pak0_2.uuid_revision), data['PAK'][0]['uuid'])
self.assertEqual(
str(self.pak0_2.uuid), data['PAK'][0]['concept_uuid'])
self.assertEqual(
str(self.pak0_2.uuid_revision), data['PAK'][0]['uuid'])
f.close()
id_request.delete()

Expand Down

0 comments on commit 1486ce9

Please sign in to comment.