From b1f9ef6eb2d94183df5d76d3c76b7f29096d96b7 Mon Sep 17 00:00:00 2001 From: Matthieu` Date: Mon, 13 Nov 2023 15:23:04 +0900 Subject: [PATCH] Fix typo https://github.com/mariadb-operator/agent/pull/5#discussion_r1389950908 --- pkg/galera/gtid_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/galera/gtid_test.go b/pkg/galera/gtid_test.go index ada6db2..96a7928 100644 --- a/pkg/galera/gtid_test.go +++ b/pkg/galera/gtid_test.go @@ -9,7 +9,7 @@ import ( func TestGTIDUnmarshal(t *testing.T) { var gtid galera.GTID - err := gtid.UnmarshalText([]byte("0-1`-2")) + err := gtid.UnmarshalText([]byte("0-1-2")) if err != nil { t.Fatal(err) }