tests/compare.py

branch
trunk
changeset 122
2b676283366a
parent 121
957d19158b7e
--- a/tests/compare.py	Sat Jul 04 11:26:19 2009 -0400
+++ b/tests/compare.py	Sun Aug 30 11:18:32 2009 -0400
@@ -20,7 +20,7 @@
 import os
 import re
 import subprocess
-import syck
+import yaml
 import sys
 import tempfile
 
@@ -220,7 +220,7 @@
 
 
 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:

mercurial