Browse Source

Fix quotes in tests

Volodymyr Tkach 2 years ago
parent
commit
c6b135ba6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/http/logger/logger_test.go

+ 1 - 1
utils/http/logger/logger_test.go

@@ -44,7 +44,7 @@ var _ = Describe("logger", func() {
 			defer resp.Body.Close()
 
 			Expect(resp.StatusCode).To(Equal(http.StatusOK))
-			Expect(buf.String()).To(ContainSubstring("\"GET /\" 200"))
+			Expect(buf.String()).To(ContainSubstring(`"GET /" 200`))
 		})
 	})
 })