Skip to content

Commit

Permalink
[FAB-6343] Change Print to Log
Browse files Browse the repository at this point in the history
Change-Id: I22886dd42cd964a8854ac1f9e35d0dbbaec71c48
Signed-off-by: Troy Ronda <troy@troyronda.com>
  • Loading branch information
troyronda committed Oct 2, 2017
1 parent 5b022b8 commit e89a861
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -512,12 +512,12 @@ func TestMultipleVipers(t *testing.T) {
// Make sure initial value is unaffected
testValue2 := viper.GetString("test.testkey")
if testValue2 != "testvalue" {
t.Logf("Expected testvalue after config initialization")
t.Fatalf("Expected testvalue after config initialization")
}
// Make sure Go SDK config is unaffected
testValue3 := myViper.GetBool("client.BCCSP.security.softVerify")
if testValue3 != true {
t.Logf("Expected existing config value to remain unchanged")
t.Fatalf("Expected existing config value to remain unchanged")
}
}

Expand Down

0 comments on commit e89a861

Please sign in to comment.