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 | |
| 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')
| -rw-r--r-- | tests/benchmarks/string-roundtrip/uuid.go (renamed from tests/benchmarks/string-roundtrip/guuid.go) | 2 | ||||
| -rw-r--r-- | tests/functional/string-round-trip/uuid.go (renamed from tests/functional/string-round-trip/guuid.go) | 2 | ||||
| -rw-r--r-- | tests/fuzz/from-string/uuid.go (renamed from tests/fuzz/from-string/guuid.go) | 2 | ||||
| -rw-r--r-- | tests/fuzz/new-from/uuid.go (renamed from tests/fuzz/new-from/guuid.go) | 2 | ||||
| -rw-r--r-- | tests/main.go | 4 | ||||
| -rw-r--r-- | tests/uuid.go (renamed from tests/guuid.go) | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/tests/benchmarks/string-roundtrip/guuid.go b/tests/benchmarks/string-roundtrip/uuid.go index 9fef55c..d686e04 100644 --- a/tests/benchmarks/string-roundtrip/guuid.go +++ b/tests/benchmarks/string-roundtrip/uuid.go @@ -1,4 +1,4 @@ -package guuid +package uuid import ( "flag" diff --git a/tests/functional/string-round-trip/guuid.go b/tests/functional/string-round-trip/uuid.go index 764576e..000d3fb 100644 --- a/tests/functional/string-round-trip/guuid.go +++ b/tests/functional/string-round-trip/uuid.go @@ -1,4 +1,4 @@ -package guuid +package uuid import ( "fmt" diff --git a/tests/fuzz/from-string/guuid.go b/tests/fuzz/from-string/uuid.go index 8971cbb..5c3c787 100644 --- a/tests/fuzz/from-string/guuid.go +++ b/tests/fuzz/from-string/uuid.go @@ -1,4 +1,4 @@ -package guuid +package uuid import ( "os" diff --git a/tests/fuzz/new-from/guuid.go b/tests/fuzz/new-from/uuid.go index a786c66..298687b 100644 --- a/tests/fuzz/new-from/guuid.go +++ b/tests/fuzz/new-from/uuid.go @@ -1,4 +1,4 @@ -package guuid +package uuid import ( "bytes" 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() } diff --git a/tests/guuid.go b/tests/uuid.go index e9dd286..ad9cac4 100644 --- a/tests/guuid.go +++ b/tests/uuid.go @@ -1,4 +1,4 @@ -package guuid +package uuid import ( "bytes" |
