Skip to content
Snippets Groups Projects
Commit 69c9d679 authored by Manuel Kieweg's avatar Manuel Kieweg
Browse files

fix wrong logging outout

parent bfda7a9b
No related branches found
No related tags found
1 merge request!145Fix integration tests
......@@ -42,17 +42,17 @@ func testSetupIntegration() {
api := os.Getenv("GOSDN_TEST_API_ENDPOINT")
if api != "" {
testAPIEndpoint = api
log.Infof("GOSDN_TEST_API_ENDPOINT set to %v", testAddress)
log.Infof("GOSDN_TEST_API_ENDPOINT set to %v", testAPIEndpoint)
}
u := os.Getenv("GOSDN_TEST_USER")
if u != "" {
testUsername = u
log.Infof("GOSDN_TEST_USER set to %v", testAddress)
log.Infof("GOSDN_TEST_USER set to %v", testUsername)
}
p := os.Getenv("GOSDN_TEST_PASSWORD")
if p != "" {
testPassword = p
log.Infof("GOSDN_TEST_PASSWORD set to %v", testAddress)
log.Infof("GOSDN_TEST_PASSWORD set to %v", testPassword)
}
gnmiMessages = map[string]pb.Message{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment