Skip to content
Snippets Groups Projects
Commit 525e743e authored by Ashwin's avatar Ashwin
Browse files

combine 2 log messages into one

parent 7635b2a3
No related branches found
No related tags found
No related merge requests found
......@@ -42,16 +42,14 @@ func TestQuery(t *testing.T) {
if uid < minIdx0 || uid > minIdx0+mod-1 {
t.Error("Not the correct UID", err)
}
t.Logf("Instance-0", str, uid)
t.Logf("Correct UID")
t.Logf("Instance-0 Correct UID", str, uid)
} else {
uid, err := rdf.GetUid(str, 1, numInstances)
if uid < minIdx1 || uid > minIdx1+mod-1 {
t.Error("Not the correct UID", err)
}
t.Logf("Instance-1", str, uid)
t.Logf("Correct UID")
t.Logf("Instance-1 Correct UID", str, uid)
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment