diff options
author | Stephen Warren <swarren@nvidia.com> | 2016-01-26 13:41:31 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-28 21:01:24 -0700 |
commit | a2ec560647e90250183e379799db957970cb260e (patch) | |
tree | ec6d75579e51ecbf5ff0ece07a225488fc4e8ffe /test/py/tests/test_net.py | |
parent | e8debf394fbba594fcfc267c61f8c6bbca395b06 (diff) |
test/py: Quote consistency
When converting test/py from " to ', I missed a few places (or added a
few inconsistencies later). Fix these.
Note that only quotes in code are converted; double-quotes in comments
and HTML are left as-is, since English and HTML use " not '.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/py/tests/test_net.py')
-rw-r--r-- | test/py/tests/test_net.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_net.py b/test/py/tests/test_net.py index 68eedde7c8d..07393eb1fdf 100644 --- a/test/py/tests/test_net.py +++ b/test/py/tests/test_net.py @@ -112,7 +112,7 @@ def test_net_ping(u_boot_console): """ if not net_set_up: - pytest.skip("Network not initialized") + pytest.skip('Network not initialized') output = u_boot_console.run_command('ping $serverip') assert 'is alive' in output @@ -129,7 +129,7 @@ def test_net_tftpboot(u_boot_console): """ if not net_set_up: - pytest.skip("Network not initialized") + pytest.skip('Network not initialized') f = u_boot_console.config.env.get('env__net_tftp_readable_file', None) if not f: |