aboutsummaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-16 11:00:52 -0400
committerDave Gauer <dave@ratfactor.com>2021-03-16 11:00:52 -0400
commitbe8429f1e66dd69ca867a1039577b4bef5916279 (patch)
treeb53cc0b8584341b52846caa3ff4b889e40b0facc /patches
parent720a8aaac48d3aace15e41ada967cb82a901c85f (diff)
downloadziglings-be8429f1e66dd69ca867a1039577b4bef5916279.tar.gz
ziglings-be8429f1e66dd69ca867a1039577b4bef5916279.tar.bz2
ziglings-be8429f1e66dd69ca867a1039577b4bef5916279.tar.xz
ziglings-be8429f1e66dd69ca867a1039577b4bef5916279.zip
fixed failing test for ex. 024
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/024_errors4.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/patches/024_errors4.patch b/patches/patches/024_errors4.patch
index bb3fc8f..5d7fb1c 100644
--- a/patches/patches/024_errors4.patch
+++ b/patches/patches/024_errors4.patch
@@ -1,10 +1,10 @@
62c62,68
-< return detectProblems(n) ???
+< return detectProblems(n) ???
---
> return detectProblems(n) catch |err| {
> if (err == MyNumberError.TooSmall) {
> return 10;
> }
->
+>
> return err;
> };