Replace ' with " in tests/unit/[common,deploy,doc,fixtures]

Partial bug: 1405884

Change-Id: I0100649c32bb911dab345c40492aa148ed1832c6
This commit is contained in:
jacobliberman 2015-02-03 10:48:15 -06:00
parent f42faded0f
commit 9d3a7a27ef

View File

@ -43,7 +43,7 @@ class TaskSampleTestCase(test.TestCase):
# NOTE(hughsaunders): Skip non config files
# (bug https://bugs.launchpad.net/rally/+bug/1314369)
if not re.search('\.(ya?ml|json)$', filename, flags=re.I):
if not re.search("\.(ya?ml|json)$", filename, flags=re.I):
continue
with open(full_path) as task_file: