diff options
author | Sladyn <gunnerforlife00@gmail.com> | 2019-03-01 20:00:07 +0530 |
---|---|---|
committer | Sladyn <gunnerforlife00@gmail.com> | 2019-03-02 23:06:55 +0530 |
commit | beecd2dbe449e551d08668adf0b8ace427d09c49 (patch) | |
tree | 6b7f517508cc0dc9cc8a9ae83d7017c0b0581254 /cache/query_test.go | |
parent | 43e56692e832bcb4ef39f745ec9fbaf7360052de (diff) | |
download | git-bug-beecd2dbe449e551d08668adf0b8ace427d09c49.tar.gz |
Made requested changes
Made changes to the doc files and remaining areas which required updation.
Diffstat (limited to 'cache/query_test.go')
-rw-r--r-- | cache/query_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
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}, } |