summaryrefslogtreecommitdiff
path: root/_test/lib/test_canonical.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-03 22:14:57 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-03 22:14:57 +0200
commitdce10fcff1de54121fb8b440b883ef5d3fe2f96a (patch)
tree072b4bd247e6f1cd95c08c7b67fea0fc96f0578e /_test/lib/test_canonical.py
parent2966a4f215861fa05e0dc7e0cd53350766e794c6 (diff)
downloadruamel.yaml-dce10fcff1de54121fb8b440b883ef5d3fe2f96a.tar.gz
Apply oitnb and mypy 0.620, then make everything work again0.15.48
Diffstat (limited to '_test/lib/test_canonical.py')
-rw-r--r--_test/lib/test_canonical.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/_test/lib/test_canonical.py b/_test/lib/test_canonical.py
index 682f6ab..48a1764 100644
--- a/_test/lib/test_canonical.py
+++ b/_test/lib/test_canonical.py
@@ -40,7 +40,7 @@ def test_canonical_error(data_filename, canonical_filename, verbose=False):
if verbose:
print(exc)
else:
- raise AssertionError("expected an exception")
+ raise AssertionError('expected an exception')
test_canonical_error.unittest = ['.data', '.canonical']
@@ -48,4 +48,5 @@ test_canonical_error.skip = ['.empty']
if __name__ == '__main__':
import test_appliance
+
test_appliance.run(globals())