summaryrefslogtreecommitdiffhomepage
path: root/cmd/mfmt/util_test.go
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-08-10 20:16:48 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-08-10 20:16:48 +0200
commit2e0d8c3889590253b091de5d1c12b1a4dadf1c8f (patch)
treef2854f3d4c0be012486721246f80ec55186b9403 /cmd/mfmt/util_test.go
parentd5c3c5f0f05e2f88dae1992c3269c01a0b924b49 (diff)
Do some renaming
Diffstat (limited to 'cmd/mfmt/util_test.go')
-rw-r--r--cmd/mfmt/util_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/mfmt/util_test.go b/cmd/mfmt/util_test.go
index e008e0b..af97146 100644
--- a/cmd/mfmt/util_test.go
+++ b/cmd/mfmt/util_test.go
@@ -6,7 +6,7 @@ package main
import (
"testing"
- "git.thomasvoss.com/euro-cash.eu/mintages"
+ "git.thomasvoss.com/euro-cash.eu/mintage"
)
func TestFormatInt(t *testing.T) {
@@ -18,7 +18,7 @@ func TestFormatInt(t *testing.T) {
{123, "123"},
{81758, "81.758"},
{752759237528, "752.759.237.528"},
- {mintages.Unknown, "?"},
+ {mintage.Unknown, "?"},
} {
s := formatInt(x.n)
if s != x.s {
@@ -33,7 +33,7 @@ func TestIntLen(t *testing.T) {
{123, len("123")},
{81758, len("81758")},
{752759237528, len("752759237528")},
- {mintages.Unknown, len("?")},
+ {mintage.Unknown, len("?")},
} {
n := intlen(x.x)
if n != x.y {