diff options
author | linkmauve <linkmauve@linkmauve.fr> | 2018-01-10 15:12:54 +0100 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2018-01-10 15:12:54 +0100 |
commit | 0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84 (patch) | |
tree | 381a0eb06e0333628aa27f9e477b19365612861d /xmpp-vala/tests | |
parent | 5557c03be87a622fa830b26e27ca6b158093937c (diff) | |
download | dino-0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84.tar.gz dino-0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84.zip |
Fix typos in comments and variable names (#269)
Thanks `codespell`!
Diffstat (limited to 'xmpp-vala/tests')
-rw-r--r-- | xmpp-vala/tests/common.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/tests/common.vala b/xmpp-vala/tests/common.vala index b393ba79..e1c155ac 100644 --- a/xmpp-vala/tests/common.vala +++ b/xmpp-vala/tests/common.vala @@ -27,7 +27,7 @@ void fail_if_not_error_code(ErrorFunc func, int expectedCode, string? reason = n func(); fail_if_reached(@"$(reason + ": " ?? "")no error thrown"); } catch (Error e) { - fail_if_not_eq_int(e.code, expectedCode, @"$(reason + ": " ?? "")catched unexpected error"); + fail_if_not_eq_int(e.code, expectedCode, @"$(reason + ": " ?? "")caught unexpected error"); } } |