Skip to content

Commit

Permalink
Merge 6089c97 into 146cfdb
Browse files Browse the repository at this point in the history
  • Loading branch information
smcv committed Feb 23, 2021
2 parents 146cfdb + 6089c97 commit 7b6d5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_vdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_parse_bom_removal(self):
result = vdf.loads(vdf.BOMS + '"asd" "123"')
self.assertEqual(result, {'asd': '123'})

if sys.version_info[0] is 2:
if sys.version_info[0] == 2:
result = vdf.loads(vdf.BOMS_UNICODE + '"asd" "123"')
self.assertEqual(result, {'asd': '123'})

Expand Down

0 comments on commit 7b6d5bf

Please sign in to comment.