[gnome-calculator] tests: s/catched/caught/
- From: Robert Roth <robertroth src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-calculator] tests: s/catched/caught/
- Date: Fri, 29 Apr 2022 05:51:35 +0000 (UTC)
commit 741cc280ac2c6226d236178e63beb396466d966a
Author: Matt Turner <mattst88 gmail com>
Date: Thu Apr 28 08:57:50 2022 -0700
tests: s/catched/caught/
tests/gcalc-parsing.vala | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/tests/gcalc-parsing.vala b/tests/gcalc-parsing.vala
index 19294c4f..85c8ec5e 100644
--- a/tests/gcalc-parsing.vala
+++ b/tests/gcalc-parsing.vala
@@ -75,7 +75,7 @@ class Tests {
parser.parse ("=", eqman);
assert_not_reached ();
} catch (GLib.Error error) {
- message ("Error catched correctly: %s", error.message);
+ message ("Error caught correctly: %s", error.message);
}
});
Test.add_func ("/gcalc/parser/assign/variable/constant",
@@ -576,25 +576,25 @@ class Tests {
try {
parser.parse ("(", eqman1);
} catch (GLib.Error error) {
- message ("Correctly catched grouping error: %s", error.message);
+ message ("Correctly caught grouping error: %s", error.message);
}
var eqman2 = new EquationManager ();
try {
parser.parse ("1)", eqman2);
} catch (GLib.Error error) {
- message ("Correctly catched grouping error: %s", error.message);
+ message ("Correctly caught grouping error: %s", error.message);
}
var eqman3 = new EquationManager ();
try {
parser.parse ("(1))", eqman3);
} catch (GLib.Error error) {
- message ("Correctly catched grouping error: %s", error.message);
+ message ("Correctly caught grouping error: %s", error.message);
}
var eqman4 = new EquationManager ();
try {
parser.parse ("(((1))))", eqman4);
} catch (GLib.Error error) {
- message ("Correctly catched grouping error: %s", error.message);
+ message ("Correctly caught grouping error: %s", error.message);
}
});
Test.add_func ("/gcalc/parser/term/parenthesis/grouping",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]