summaryrefslogtreecommitdiff
path: root/tests/compare.py
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@debian.org>2018-12-02 05:36:56 +0000
committerDmitry Bogatov <KAction@debian.org>2018-12-02 05:36:56 +0000
commita17df1c35c397d008c7990ea7ba8b8a2d9525c8c (patch)
tree4d649ad69e4497a33518aa77a2886b78ea311806 /tests/compare.py
parent11470c63662bffe68b6b5fbfccdf5f34d208bcb6 (diff)
Import Upstream version 6.6
Diffstat (limited to 'tests/compare.py')
-rw-r--r--tests/compare.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compare.py b/tests/compare.py
index 7927467..56122aa 100644
--- a/tests/compare.py
+++ b/tests/compare.py
@@ -20,7 +20,7 @@
import os
import re
import subprocess
-import syck
+import yaml
import sys
import tempfile
@@ -220,7 +220,7 @@ class ExtractorTest(object):
test_db = open('tests.yml')
-test_data = syck.load(test_db.read(-1))
+test_data = yaml.load(test_db.read(-1))
test_db.close()
tests = [ExtractorTest(**data) for data in test_data]
for original_data in test_data: