Show More
@@ -240,7 +240,7 b" def ipexec_validate(fname, expected_out, expected_err=''," | |||||
240 | raise ValueError('Running file %r produced error: %r' % |
|
240 | raise ValueError('Running file %r produced error: %r' % | |
241 | (fname, err)) |
|
241 | (fname, err)) | |
242 | # If no errors or output on stderr was expected, match stdout |
|
242 | # If no errors or output on stderr was expected, match stdout | |
243 | nt.assert_equal(out.strip(), expected_out.strip()) |
|
243 | nt.assert_equal("\n".join(out.strip().splitlines()), "\n".join(expected_out.strip().splitlines())) | |
244 |
|
244 | |||
245 |
|
245 | |||
246 | class TempFileMixin(object): |
|
246 | class TempFileMixin(object): |
General Comments 0
You need to be logged in to leave comments.
Login now