From da21e83c58b3bbc389d8919e9ca5e865e45f2751 Mon Sep 17 00:00:00 2001 From: xegineering Date: Wed, 2 Oct 2024 16:57:10 +0200 Subject: Use testing.Fatalf() to log in tests Using testing.Errorf() does not stop the test. This was never wanted. --- soundbox_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'soundbox_test.go') diff --git a/soundbox_test.go b/soundbox_test.go index 6a5cde3..ee9d885 100644 --- a/soundbox_test.go +++ b/soundbox_test.go @@ -8,18 +8,18 @@ func TestNewSoundbox(t *testing.T) { // valid MAC should succeed _, err := NewSoundbox("12:34:56:ab:cd:ef") if err != nil { - t.Errorf("NewSoundbox() failed: %v", err) + t.Fatalf("NewSoundbox() failed: %v", err) } // invalid MAC should fail _, err = NewSoundbox("12:34:56:ab:cd") if err == nil { - t.Errorf("NewSoundbox() failed: %v", err) + t.Fatalf("NewSoundbox() failed: %v", err) } // No EUI-64 supported _, err = NewSoundbox("12:34:56:ab:cd:ef:12:45") if err == nil { - t.Errorf("NewSoundbox() failed: %v", err) + t.Fatalf("NewSoundbox() failed: %v", err) } } -- cgit v1.2.3-70-g09d2