aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/pair_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samplebinding/pair_test.py')
-rwxr-xr-xtests/samplebinding/pair_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/pair_test.py b/tests/samplebinding/pair_test.py
index 212fabfc8..fd82dde3a 100755
--- a/tests/samplebinding/pair_test.py
+++ b/tests/samplebinding/pair_test.py
@@ -69,7 +69,7 @@ class PairConversionTest(unittest.TestCase):
pu.setPair(pair)
result = pu.getPair()
self.assertNotEqual(result, pair)
- self.assertEqual(result, list(pair))
+ self.assertEqual(result, tuple(pair))
if __name__ == '__main__':
unittest.main()