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 b7e1bbd commit 3b82688Copy full SHA for 3b82688
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().strip()
122
- f2 = open(expected,"r").read().strip()
+ f1 = open(output_file, "r").read().replace(" ", "")
+ f2 = open(expected,"r").read().replace(" ", "")
123
assert f1 == f2
124
125
def remove_timestamp(html_text):
0 commit comments