Skip to content

Commit

Permalink
Fixed consistency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
WaughB committed Jan 7, 2024
1 parent c932c2e commit 30859f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_generate_sample_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_sample_data_key_length():
def test_sample_data_value_type():
data = generate_sample_data(10, 5)
for _, value in data:
assert type(value) == int
assert isinstance(value, int)


def test_zero_size():
Expand Down

0 comments on commit 30859f1

Please sign in to comment.