From 14cec040c6fa99680d9ffc4c3b6ff7bcdc073146 Mon Sep 17 00:00:00 2001 From: Miguelangel Jose Freitas Loreto Date: Mon, 17 Aug 2009 09:54:34 -0330 Subject: Import Debian changes 6.5-2 dtrx (6.5-2) unstable; urgency=low * debian/control: - B-D-I: Using python-yaml instead of python-syck (Closes: #541955). - Standards-Version: 3.8.3 --- tests/compare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/compare.py') 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: -- cgit v1.2.3