From 7dc5f0b314e806e5fdff0276a8fc6aabba321365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Noack?= Date: Sun, 2 Jun 2024 17:41:20 +0200 Subject: [PATCH] abi_versions_test: slightly improved failure output #cleanup --- landlock/abi_versions_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landlock/abi_versions_test.go b/landlock/abi_versions_test.go index 5399070..a80c0ae 100644 --- a/landlock/abi_versions_test.go +++ b/landlock/abi_versions_test.go @@ -17,6 +17,6 @@ func TestSupportedAccessFS(t *testing.T) { want := supportedAccessFS if got != want { - t.Errorf("V3 supported access FS: got %x, want %x", got, want) + t.Errorf("V3 supported access FS: got %v, want %v", got, want) } }