diff options
| author | Shulhan <ms@kilabit.info> | 2025-01-02 03:17:26 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-01-02 03:17:26 +0700 |
| commit | c51a2583a4f1c5103cfe139a2ca1981f95b11f20 (patch) | |
| tree | 0fe01d2bfb621f41fb2763a7080d4e2145b212ba | |
| parent | 0f1f7c4d8eeb290208677c4031747e3bb478f6bb (diff) | |
| download | kamusku-c51a2583a4f1c5103cfe139a2ca1981f95b11f20.tar.xz | |
all: fix logging in client tests
| -rw-r--r-- | client_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client_test.go b/client_test.go index aaf6ed3..94a0b4f 100644 --- a/client_test.go +++ b/client_test.go @@ -40,7 +40,7 @@ func TestApiClient_Lookup_offline(t *testing.T) { }} for _, c := range cases { - t.Logf(c.desc) + t.Log(c.desc) got, err := client.Lookup(c.words) if err != nil { @@ -93,7 +93,7 @@ func TestApiClient_Lookup_online(t *testing.T) { }} for _, c := range cases { - t.Logf(c.desc) + t.Log(c.desc) got, err := client.Lookup(c.words) if err != nil { |
