diff options
author | EuAndreh <eu@euandre.org> | 2025-05-03 19:41:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-03 19:41:19 -0300 |
commit | a6e6896309007fa1013bd51cee125ab8a75f282d (patch) | |
tree | f6839c339e9d282138a793488cd8ac23ca356ac6 /tests/main.go | |
parent | tests/guuid.go: Use os.Exit over assert when testing panic (diff) | |
download | uuid-a6e6896309007fa1013bd51cee125ab8a75f282d.tar.gz uuid-a6e6896309007fa1013bd51cee125ab8a75f282d.tar.xz |
re s/guuid/uuid/g
Diffstat (limited to 'tests/main.go')
-rw-r--r-- | tests/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/main.go b/tests/main.go index b803727..17103ab 100644 --- a/tests/main.go +++ b/tests/main.go @@ -1,7 +1,7 @@ package main -import "guuid" +import "uuid" func main() { - guuid.MainTest() + uuid.MainTest() } |