From 0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84 Mon Sep 17 00:00:00 2001 From: linkmauve Date: Wed, 10 Jan 2018 15:12:54 +0100 Subject: Fix typos in comments and variable names (#269) Thanks `codespell`! --- plugins/signal-protocol/tests/common.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/signal-protocol') diff --git a/plugins/signal-protocol/tests/common.vala b/plugins/signal-protocol/tests/common.vala index 4fd463c0..26e90185 100644 --- a/plugins/signal-protocol/tests/common.vala +++ b/plugins/signal-protocol/tests/common.vala @@ -52,7 +52,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"); } } @@ -89,4 +89,4 @@ bool fail_if_null(void* what, string? reason = null) { return fail_if(what == null || (size_t)what == 0, reason); } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf