Skip to content

Commit

Permalink
removed ";" in python sources
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed Nov 13, 2020
1 parent b284eca commit 0d5bb8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_create_multiple_entity(self):
for i in range(10):
d = dict()
d['key'] = "value{:02}".format(i)
resp = requests.post(self.resname, json = d);
resp = requests.post(self.resname, json = d)
self.assertEqual(201, resp.status_code)
xref = resp.headers['X-REF']
self.assertIsNotNone(xref)
Expand Down

0 comments on commit 0d5bb8c

Please sign in to comment.