File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11machine :
22 pre :
3+ - brew update
34 - python --version
45 - sudo -H pip install --upgrade virtualenv
56 - brew install pyenv
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ def test_write_document_tv_with_validate(self):
188188 try :
189189 temp_dir = tempfile .mkdtemp (prefix = 'test_spdx' )
190190 result_file = os .path .join (temp_dir , 'spdx-simple.tv' )
191- with open (result_file , 'wb ' ) as output :
191+ with open (result_file , 'w ' ) as output :
192192 write_document (doc , output , validate = True )
193193
194194 expected_file = utils_test .get_test_loc (
@@ -211,7 +211,7 @@ def test_write_document_tv_with_or_later_with_validate(self):
211211 result_file = os .path .join (temp_dir , 'spdx-simple-plus.tv' )
212212
213213 # test proper!
214- with open (result_file , 'wb ' ) as output :
214+ with open (result_file , 'w ' ) as output :
215215 write_document (doc , output , validate = True )
216216
217217 expected_file = utils_test .get_test_loc (
You can’t perform that action at this time.
0 commit comments