Skip to content

Commit fcc81bd

Browse files
committed
python 3 compatibility
1 parent 25807d4 commit fcc81bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_file_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_base_case(self):
3030

3131
sut.load_file(self.plugin_file.name)
3232

33-
self.assertEquals(['Foo'], sut.plugins.keys())
33+
self.assertEquals(['Foo'], list(sut.plugins.keys()))
3434
self.assertIsInstance(sut.plugins['Foo'], object)
3535
self.assertEquals('Foo', sut.plugins['Foo']().__class__.__name__)
3636

0 commit comments

Comments
 (0)