data: unexport fixTime

This commit is contained in:
Michael Eischer
2026-06-05 16:39:50 +02:00
parent 347cac780d
commit 7f3c9eb749
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ func TestFixTime(t *testing.T) {
for _, test := range tests {
t.Run("", func(t *testing.T) {
res := FixTime(test.src)
res := fixTime(test.src)
if !res.Equal(test.want) {
t.Fatalf("wrong result for %v, want:\n %v\ngot:\n %v", test.src, test.want, res)
}