summaryrefslogtreecommitdiff
path: root/tests/main.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-05-03 19:41:19 -0300
committerEuAndreh <eu@euandre.org>2025-05-03 19:41:19 -0300
commita6e6896309007fa1013bd51cee125ab8a75f282d (patch)
treef6839c339e9d282138a793488cd8ac23ca356ac6 /tests/main.go
parenttests/guuid.go: Use os.Exit over assert when testing panic (diff)
downloaduuid-a6e6896309007fa1013bd51cee125ab8a75f282d.tar.gz
uuid-a6e6896309007fa1013bd51cee125ab8a75f282d.tar.xz
re s/guuid/uuid/g
Diffstat (limited to 'tests/main.go')
-rw-r--r--tests/main.go4
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()
}