Skip to content

Commit aeebab1

Browse files
committed
fix: test equality try 2
1 parent fd42335 commit aeebab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/tests/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ def test_CommandLine_output():
661661
ci.inputs.terminal_output = 'file'
662662
res = ci.run()
663663
yield assert_true, 'stdout.nipype' in res.runtime.stdout
664-
yield assert_equal, type(res.runtime.stdout), type('hi')
664+
yield assert_equal, type(text_type(res.runtime.stdout)), type(text_type('hi'))
665665
ci = nib.CommandLine(command='ls -l')
666666
ci.inputs.terminal_output = 'none'
667667
res = ci.run()

0 commit comments

Comments
 (0)