Add space to message in manila_tempest_tests/tests/api/test_shares.py

There isn't space between "for" and "share".
This patch adds space after "for".

Change-Id: Idc904d608cdc8a0df8e60e984824898ce6c58726
This commit is contained in:
daiki kato 2016-02-16 20:12:15 +09:00 committed by David Sariel
parent 2e9fe58161
commit cce155c147
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class SharesNFSTest(base.BaseSharesTest):
"actual_sn": get["share_network_id"],
"expected_sn": parent["share_network_id"],
}
msg = ("Expected share_network_id %(expected_sn)s for"
msg = ("Expected share_network_id %(expected_sn)s for "
"share %(share)s, but %(actual_sn)s found." % keys)
self.assertEqual(
get["share_network_id"], parent["share_network_id"], msg)