We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
r
1 parent 14a646e commit 0b3502dCopy full SHA for 0b3502d
tests/test_attrib.py
@@ -118,9 +118,9 @@ def test_lic_key_name_sync(self):
118
errors, abouts = model.collect_inventory(test_file)
119
attrib.generate_and_save(abouts, output_file, template_loc)
120
121
- with open(output_file) as of:
+ with open(output_file, 'r') as of:
122
f1 = '\n'.join(of.readlines(False))
123
- with open(expected) as ef:
+ with open(expected, 'r') as ef:
124
f2 = '\n'.join(ef.readlines(False))
125
126
assert f1 == f2
0 commit comments