From 930660c36baa4490afe26926dc8b3d3850affe48 Mon Sep 17 00:00:00 2001 From: Miloslav Trmač Date: Wed, 18 Jul 2018 21:13:14 +0200 Subject: Use `...` for a regexp constant to improve readability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Should not change behavior. Signed-off-by: Miloslav Trmač Closes: #1111 Approved by: baude --- libpod/container_internal_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libpod/container_internal_test.go') diff --git a/libpod/container_internal_test.go b/libpod/container_internal_test.go index 78891a672..aa28e99e3 100644 --- a/libpod/container_internal_test.go +++ b/libpod/container_internal_test.go @@ -59,7 +59,7 @@ func TestPostDeleteHooks(t *testing.T) { t.Fatal(err) } - stateRegexp := "{\"ociVersion\":\"1\\.0\\.0\",\"id\":\"123abc\",\"status\":\"stopped\",\"bundle\":\"/tmp/libpod_test_[0-9]*\",\"annotations\":{\"a\":\"b\"}}" + stateRegexp := `{"ociVersion":"1\.0\.0","id":"123abc","status":"stopped","bundle":"/tmp/libpod_test_[0-9]*","annotations":{"a":"b"}}` for _, path := range []string{statePath, copyPath} { t.Run(path, func(t *testing.T) { content, err := ioutil.ReadFile(path) -- cgit v1.2.3-54-g00ecf