Fix build failure
This commit is contained in:
parent
cfbac77fa4
commit
16efce0514
1 changed files with 4 additions and 4 deletions
|
|
@ -131,12 +131,12 @@ class Geary.Imap.DeserializerTest : TestCase {
|
|||
this.process.begin(Expect.MESSAGE, this.async_completion);
|
||||
RootParameters? message = this.process.end(async_result());
|
||||
|
||||
assert_int(2, message.size);
|
||||
assert_equal<int?>(message.size, 2);
|
||||
assert_true(
|
||||
message.get(1) is UnquotedStringParameter,
|
||||
"Not parsed as n atom"
|
||||
);
|
||||
assert_string(bytes, message.get(1).to_string());
|
||||
assert_string(message.get(1).to_string(), bytes);
|
||||
}
|
||||
|
||||
public void parse_wildcard_flag() throws GLib.Error {
|
||||
|
|
@ -148,12 +148,12 @@ class Geary.Imap.DeserializerTest : TestCase {
|
|||
this.process.begin(Expect.MESSAGE, this.async_completion);
|
||||
RootParameters? message = this.process.end(async_result());
|
||||
|
||||
assert_int(2, message.size);
|
||||
assert_equal<int?>(message.size, 2);
|
||||
assert_true(
|
||||
message.get(1) is UnquotedStringParameter,
|
||||
"Not parsed as n atom"
|
||||
);
|
||||
assert_string(bytes, message.get(1).to_string());
|
||||
assert_string(message.get(1).to_string(), bytes);
|
||||
}
|
||||
|
||||
public void parse_response_code() throws Error {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue