From 7609e9376a18f49b9aa5bb2fa7a1c993508d06b8 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 3 Dec 2015 18:29:15 -0200 Subject: [PATCH] Fix call to report_collection_diff in test "from" and "to" of the diff algorithm expect strings only --- testing/test_dsession.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_dsession.py b/testing/test_dsession.py index be638e4..f33fc41 100644 --- a/testing/test_dsession.py +++ b/testing/test_dsession.py @@ -277,7 +277,7 @@ def test_report_collection_diff_different(): ' ccc\n' '-YYY') - msg = report_collection_diff(from_collection, to_collection, 1, 2) + msg = report_collection_diff(from_collection, to_collection, '1', '2') assert msg == error_message