Skip to content

Commit 4671488

Browse files
committed
sdjournal: don't use fmt.Printf from tests
The output also missed a newline. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent b3487e3 commit 4671488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdjournal/journal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ func TestJournalGetBootID(t *testing.T) {
488488
t.Fatalf("Get bootID: %s is Null", bootID)
489489
}
490490

491-
fmt.Printf("Test GetBootID: %s", bootID)
491+
t.Log("bootid:", bootID)
492492
}
493493

494494
func contains(s []string, v string) bool {

0 commit comments

Comments
 (0)