diff options
author | EuAndreh <eu@euandre.org> | 2025-01-15 15:16:46 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-01-15 15:16:46 -0300 |
commit | c09307a777efc3231eedcfb642dbb97b70514bbd (patch) | |
tree | 2dac145c57eccd147da313faa982b4620ed69e2a | |
parent | Makefile: Simplify variable names (diff) | |
download | uuid-c09307a777efc3231eedcfb642dbb97b70514bbd.tar.gz uuid-c09307a777efc3231eedcfb642dbb97b70514bbd.tar.xz |
tests/guuid.go: Use os.Exit over assert when testing panic
Diffstat (limited to '')
-rw-r--r-- | tests/guuid.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guuid.go b/tests/guuid.go index 58e748e..e9dd286 100644 --- a/tests/guuid.go +++ b/tests/guuid.go @@ -176,7 +176,7 @@ func test_New() { }() New() - assertEq(true, false) + os.Exit(5) }) } |