summaryrefslogtreecommitdiff
path: root/test/py/tests/test_dfu.py
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2016-01-26 13:41:31 -0700
committerSimon Glass <sjg@chromium.org>2016-01-28 21:01:24 -0700
commita2ec560647e90250183e379799db957970cb260e (patch)
treeec6d75579e51ecbf5ff0ece07a225488fc4e8ffe /test/py/tests/test_dfu.py
parente8debf394fbba594fcfc267c61f8c6bbca395b06 (diff)
downloadu-boot-imx-a2ec560647e90250183e379799db957970cb260e.zip
u-boot-imx-a2ec560647e90250183e379799db957970cb260e.tar.gz
u-boot-imx-a2ec560647e90250183e379799db957970cb260e.tar.bz2
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_dfu.py')
-rw-r--r--test/py/tests/test_dfu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_dfu.py b/test/py/tests/test_dfu.py
index 0f69eef..c09b902 100644
--- a/test/py/tests/test_dfu.py
+++ b/test/py/tests/test_dfu.py
@@ -258,7 +258,7 @@ def test_dfu(u_boot_console, env__usb_dev_port, env__dfu_config):
dfu_write(0, dummy_f.abs_fn)
for size in sizes:
- with u_boot_console.log.section("Data size %d" % size):
+ with u_boot_console.log.section('Data size %d' % size):
dfu_write_read_check(size)
# Make the status of each sub-test obvious. If the test didn't
# pass, an exception was thrown so this code isn't executed.