Skip to content
This repository was archived by the owner on Mar 30, 2023. It is now read-only.

Commit 01ca864

Browse files
author
Jason Costello
committed
Fixing failing test now deserialisation is removed
1 parent 42882b9 commit 01ca864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def mocked_resources(mocked_responses):
7575
# include hypervectors for GET response
7676
ensemble_on_get = ensemble.to_response()
7777
ensemble_on_get['hypervectors'] = [randint(1, 10) for _ in range(ensemble_size)]
78-
compressed_ensemble_get = gzip.compress(json.dumps(ensemble_on_get).encode('utf-8'))
78+
compressed_ensemble_get = json.dumps(ensemble_on_get).encode('utf-8')
7979

8080
mocked_responses.add(
8181
responses.GET,

0 commit comments

Comments
 (0)