From 22b5c3c75233c0b3fdf3d5e951e44aa77db31359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kris=20N=C3=B3va?= Date: Thu, 11 Feb 2021 18:26:02 -0800 Subject: [PATCH] Update README.md --- test/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/README.md b/test/README.md index a0ca94e..c051da3 100644 --- a/test/README.md +++ b/test/README.md @@ -12,7 +12,7 @@ To add a test please try to have both `Happy` and `Sad` tests defined for all ne Example test: -#####mymethod_test.go +##### mymethod_test.go ```go @@ -27,7 +27,7 @@ func TestHappyMethod(t *testing.T) { } // TestSadMethod will false positive test my new method -func TestHappyMethod(t *testing.T) { +func TestSadMethod(t *testing.T) { params := "my bad input" _, err := Client.V1().Method(params) if err == nil { @@ -36,4 +36,4 @@ func TestHappyMethod(t *testing.T) { } } -``` \ No newline at end of file +```