Merge "Minor bug of _assert_multiple_items function"

This commit is contained in:
Zuul 2018-09-05 13:38:13 +00:00 committed by Gerrit Code Review
commit a9ddfc5c6a
1 changed files with 2 additions and 2 deletions

View File

@ -158,8 +158,8 @@ class BaseTest(base.BaseTestCase):
found = len(filtered_items)
if found != count:
LOG.info("[failed test ctx] items=%s, expected_props=%s", (str(
items), props))
LOG.info("[failed test ctx] items=%s, expected_props=%s", str(
items), props)
self.fail("Wrong number of items found [props=%s, "
"expected=%s, found=%s]" % (props, count, found))