Fix failing test after test case async changes

This commit is contained in:
Michael Gratton 2020-04-10 14:29:20 +10:00
parent 196f05e595
commit c98efafb28

View file

@ -270,7 +270,11 @@ class Geary.Imap.DeserializerTest : TestCase {
this.process.begin(Expect.MESSAGE, this.async_completion);
RootParameters? message = this.process.end(async_result());
assert(message.to_string() == bye);
assert(eos);
assert_false(eos);
this.process.begin(Expect.EOS, this.async_completion);
assert_true(eos);
assert(this.deser.is_halted());
}