diff options
Diffstat (limited to 'plumbing/transport/file/client_test.go')
-rw-r--r-- | plumbing/transport/file/client_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/transport/file/client_test.go b/plumbing/transport/file/client_test.go index 3532a4c..864cddc 100644 --- a/plumbing/transport/file/client_test.go +++ b/plumbing/transport/file/client_test.go @@ -33,7 +33,7 @@ func (s *ClientSuite) TestCommand(c *C) { // Make sure we get an error for one that doesn't exist. _, err = runner.Command("git-fake-command", ep, emptyAuth) - c.Assert(os.IsNotExist(err), Equals, true) + c.Assert(err, NotNil) } const bareConfig = `[core] |