diff options
author | Jacek Sieka <arnetheduck@gmail.com> | 2020-04-28 19:56:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 19:56:01 +0200 |
commit | 7d6cbf290a5e0cbce14b9926f57221a017f20a4a (patch) | |
tree | f8bf7d55e271571ebbb817ff28858c29e712382b /examples | |
parent | cd9af6b8040bc72985d457e5169e18ded7c107d6 (diff) | |
download | Nim-7d6cbf290a5e0cbce14b9926f57221a017f20a4a.tar.gz |
Error -> Defect for defects (#13908)
* Error -> Defect for defects The distinction between Error and Defect is subjective, context-dependent and somewhat arbitrary, so when looking at an exception, it's hard to guess what it is - this happens often when looking at a `raises` list _without_ opening the corresponding definition and digging through layers of inheritance. With the help of a little consistency in naming, it's at least possible to start disentangling the two error types and the standard lib can set a good example here.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/tunit.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/tunit.nim b/examples/tunit.nim index bc447812d..e8ff8a952 100644 --- a/examples/tunit.nim +++ b/examples/tunit.nim @@ -29,7 +29,7 @@ proc foo: bool = return true proc err = - raise newException(ArithmeticError, "some exception") + raise newException(ArithmeticDefect, "some exception") test "final test": echo "inside suite-less test" @@ -40,8 +40,8 @@ test "final test": d > 10 test "arithmetic failure": - expect(ArithmeticError): + expect(ArithmeticDefect): err() - expect(ArithmeticError, CatchableError): + expect(ArithmeticDefect, CatchableError): discard foo() |