Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[HOT FIX] correct open mode in class setup;
  • Loading branch information
opalczynski committed Sep 27, 2016
commit 95ebb90a99a79bbc97c37420347b051df4e5d854
2 changes: 1 addition & 1 deletion tests/integration_test_data_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def setUpClass(cls):
name=cls.class_name,
schema=cls.schema
)
with open(cls.file_path, 'rt') as f:
with open(cls.file_path, 'rb') as f:
cls.file_md5 = cls.get_file_md5(f)

def test_creating_file_object(self):
Expand Down