Skip to content

Commit

Permalink
Merge pull request #26 from gildas/release/1.7.4
Browse files Browse the repository at this point in the history
Merge release/1.7.4
  • Loading branch information
gildas authored Oct 24, 2024
2 parents 1495410 + 79171f5 commit a53cffa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ func (suite *StreamSuite) TestFailsWritingToStackDriverWithNoCredentials() {
stream := &logger.StackDriverStream{}
err := stream.Write(logger.NewRecord().Set("key", "value"))
suite.Require().NotNil(err, "Should have failed writing to stream")
suite.Assert().Contains(err.Error(), "google: could not find default credentials")
suite.Assert().Contains(err.Error(), "could not find default credentials")
}

func (suite *StreamSuite) TestFailsWritingToStackDriverWithInvalidKey() {
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ package logger
var commit string

// VERSION is the version of this application
var VERSION = "1.7.3" + commit
var VERSION = "1.7.4" + commit

0 comments on commit a53cffa

Please sign in to comment.