Skip to content

Commit

Permalink
Update unit test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Cataldo committed Jan 4, 2024
1 parent af818f7 commit 79eab97
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions errors/errors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ func TestNewE(t *testing.T) {
logger.Info("err:", NewE("/test", errors.New("test error detail")))
}

func TestNewESkipCaller(t *testing.T) {
logger.Info("err:", NewESkipCaller(1, "/test", errors.New("test error detail")))
}

func TestNewSkipCaller(t *testing.T) {
logger.Info("err:", NewSkipCaller(1, "test error detail"))
}
Expand Down

0 comments on commit 79eab97

Please sign in to comment.