From beecd2dbe449e551d08668adf0b8ace427d09c49 Mon Sep 17 00:00:00 2001 From: Sladyn Date: Fri, 1 Mar 2019 20:00:07 +0530 Subject: Made requested changes Made changes to the doc files and remaining areas which required updation. --- cache/query_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cache/query_test.go') diff --git a/cache/query_test.go b/cache/query_test.go index 29d2f585..2d7ee8e1 100644 --- a/cache/query_test.go +++ b/cache/query_test.go @@ -22,6 +22,9 @@ func TestQueryParse(t *testing.T) { {"label:hello", true}, {`label:"Good first issue"`, true}, + {"title:Bug titleOne", true}, + {`title:"Bug titleTwo"`, true}, + {"sort:edit", true}, {"sort:unknown", false}, } -- cgit From 0c42a7c33ef02cdb72b110b65e36e0e426c19359 Mon Sep 17 00:00:00 2001 From: Sladyn Date: Fri, 1 Mar 2019 20:37:19 +0530 Subject: Rectified Tests --- cache/query_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cache/query_test.go') diff --git a/cache/query_test.go b/cache/query_test.go index 2d7ee8e1..f34b3e6a 100644 --- a/cache/query_test.go +++ b/cache/query_test.go @@ -22,7 +22,7 @@ func TestQueryParse(t *testing.T) { {"label:hello", true}, {`label:"Good first issue"`, true}, - {"title:Bug titleOne", true}, + {"title:titleOne", true}, {`title:"Bug titleTwo"`, true}, {"sort:edit", true}, -- cgit