diff options
author | Jakob <jakobjakobson13@posteo.de> | 2020-10-23 21:49:38 +0200 |
---|---|---|
committer | Jakob <jakobjakobson13@posteo.de> | 2020-10-23 21:49:38 +0200 |
commit | ec359c37ba8f542fae97ff4e51a6d23876dcf185 (patch) | |
tree | 6abe4c0f90bc59885687ea88b9dd3b81b22bb35a /numpy/testing/_private/utils.py | |
parent | 7a4588e00bea078a2e0ebdb1540c05d061796ccf (diff) | |
download | numpy-ec359c37ba8f542fae97ff4e51a6d23876dcf185.tar.gz |
fix quotation marks
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index a8d0f582c..e750db58b 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -1199,7 +1199,7 @@ def assert_string_equal(actual, desired): raise AssertionError(repr(d1)) if not diff_list: return - msg = f'Differences in strings:\n{''.join(diff_list).rstrip()}' + msg = f"Differences in strings:\n{''.join(diff_list).rstrip()}" if actual != desired: raise AssertionError(msg) |