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.
1 parent 708417a commit b7e1bbdCopy full SHA for b7e1bbd
tests/test_attrib.py
@@ -118,8 +118,8 @@ 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
- f1 = open(output_file, "r").read()
122
- f2 = open(expected,"r").read()
+ f1 = open(output_file, "r").read().strip()
+ f2 = open(expected,"r").read().strip()
123
assert f1 == f2
124
125
def remove_timestamp(html_text):
0 commit comments