make stdout_contain work again

after introduction of FileContent class
to handle file encoding in a stricter way
This commit is contained in:
Johan Holmberg 2016-11-18 15:10:13 +01:00
parent d6e6189cb3
commit 93519ab612

View File

@ -593,7 +593,7 @@ module Cmdtest
def _stdxxx_contain_aux(stdxxx, positive, expected)
_process_after do
@_checked[stdxxx] = true
actual = @_effects.send(stdxxx)
actual = @_effects.send(stdxxx).text(@_output_encoding)
_xxx_contain(stdxxx, positive, actual, expected)
end
end