From 8782262d7d0750beb6111b8197865343fe0a8637 Mon Sep 17 00:00:00 2001 From: Thomi Richards Date: Tue, 19 Nov 2013 11:01:15 +1300 Subject: Extend test to make sure that by default no mime-type is specified. --- python/subunit/tests/test_output_filter.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'python/subunit/tests') diff --git a/python/subunit/tests/test_output_filter.py b/python/subunit/tests/test_output_filter.py index 9d530c5..ef6dc9a 100644 --- a/python/subunit/tests/test_output_filter.py +++ b/python/subunit/tests/test_output_filter.py @@ -216,12 +216,12 @@ class FileChunkingTests(TestCase): self.assertThat( result._events, MatchesListwise([ - MatchesCall(call='status', file_bytes='H', eof=False), - MatchesCall(call='status', file_bytes='e', eof=False), - MatchesCall(call='status', file_bytes='l', eof=False), - MatchesCall(call='status', file_bytes='l', eof=False), - MatchesCall(call='status', file_bytes='o', eof=False), - MatchesCall(call='status', file_bytes='', eof=True), + MatchesCall(call='status', file_bytes='H', mime_type=None, eof=False), + MatchesCall(call='status', file_bytes='e', mime_type=None, eof=False), + MatchesCall(call='status', file_bytes='l', mime_type=None, eof=False), + MatchesCall(call='status', file_bytes='l', mime_type=None, eof=False), + MatchesCall(call='status', file_bytes='o', mime_type=None, eof=False), + MatchesCall(call='status', file_bytes='', mime_type=None, eof=True), ]) ) -- cgit v1.2.1