fix pep8 (trailing ';')

This commit is contained in:
Scott Moser 2014-01-17 11:09:15 -05:00
parent 0062fccd97
commit 15aa19ac78
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ class TestParseShellConfig(MockerTestCase):
def test_no_seconds(self):
cfg = '\n'.join(["foo=bar", "SECONDS=2", "xx=foo"])
# we could test 'sleep 2', but that would make the test run slower.
ret = ds.parse_shell_config(cfg);
ret = ds.parse_shell_config(cfg)
self.assertEqual(ret, {"foo": "bar", "xx": "foo"})