diff options
author | ferhat elmas <elmas.ferhat@gmail.com> | 2017-12-18 02:08:58 +0100 |
---|---|---|
committer | ferhat elmas <elmas.ferhat@gmail.com> | 2017-12-18 02:09:00 +0100 |
commit | 9a9f35269c31e880bc88486a5bcc13f592eace6a (patch) | |
tree | 91c31e3e9978143f19087591c453a5d4f6781365 /worktree_test.go | |
parent | 757a26038e5404f94523ba07d017d1b38bcbf6dd (diff) | |
download | go-git-9a9f35269c31e880bc88486a5bcc13f592eace6a.tar.gz |
*: simplication
- no unnecessary err/bool check, uses them directly
Signed-off-by: ferhat elmas <elmas.ferhat@gmail.com>
Diffstat (limited to 'worktree_test.go')
-rw-r--r-- | worktree_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/worktree_test.go b/worktree_test.go index 36e3a08..ee9bf2f 100644 --- a/worktree_test.go +++ b/worktree_test.go @@ -1481,7 +1481,7 @@ func (s *WorktreeSuite) TestGrep(c *C) { break } } - if found != true { + if !found { c.Errorf("unexpected grep results for %q, expected result to contain: %v", tc.name, wantResult) } } @@ -1496,7 +1496,7 @@ func (s *WorktreeSuite) TestGrep(c *C) { break } } - if found != false { + if found { c.Errorf("unexpected grep results for %q, expected result to NOT contain: %v", tc.name, dontWantResult) } } |