diff options
author | EuAndreh <eu@euandre.org> | 2024-09-28 06:25:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-09-28 06:25:12 -0300 |
commit | 38b560d49f14ee0a3e05563d4a502705969120db (patch) | |
tree | 8367e1acbf5a671022da8b934d9c847f298499d9 /tests/guuid.go | |
parent | src/guuid.go: Rename XxxError to ErrXxx (diff) | |
download | uuid-38b560d49f14ee0a3e05563d4a502705969120db.tar.gz uuid-38b560d49f14ee0a3e05563d4a502705969120db.tar.xz |
src/guuid.go: Remove "uuid" prefix from constants
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 c351bba..f4d182c 100644 --- a/tests/guuid.go +++ b/tests/guuid.go @@ -177,7 +177,7 @@ func test_NewBytes() { }) testing("we get the correct byte count", func() { - assertEq(len(NewBytes()), UUIDByteCount) + assertEq(len(NewBytes()), ByteCount) }) } |