summaryrefslogtreecommitdiff
path: root/tests/compare.py
diff options
context:
space:
mode:
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: