Fix sanity failures (#43)

* Fix sanity failures.

* Add changelog fragment.

(cherry picked from commit a88f4c804b)
This commit is contained in:
Felix Fontein 2021-08-12 08:53:21 +02:00
parent 11e6cd0a6e
commit 8ee9e8b5ff
3 changed files with 4 additions and 2 deletions

View file

@ -43,7 +43,7 @@ class TestRouterosFactsModule(TestRouterosModule):
output = list()
for command in commands:
filename = str(command).split(' | ')[0].replace(' ', '_')
filename = str(command).split(' | ', 1)[0].replace(' ', '_')
output.append(load_fixture('facts%s' % filename))
return output