diff options
author | xegineering <me@xegineering.eu> | 2024-10-02 16:57:10 +0200 |
---|---|---|
committer | xegineering <me@xegineering.eu> | 2024-10-02 16:57:10 +0200 |
commit | da21e83c58b3bbc389d8919e9ca5e865e45f2751 (patch) | |
tree | fc0fcddc8309d00c11cd55a7511111d41dfbed9a /soundbox_test.go | |
parent | bc29b4a8b4629a9ef0d335325612a02a6c07b4e8 (diff) | |
download | soundbox-go-da21e83c58b3bbc389d8919e9ca5e865e45f2751.tar soundbox-go-da21e83c58b3bbc389d8919e9ca5e865e45f2751.tar.zst soundbox-go-da21e83c58b3bbc389d8919e9ca5e865e45f2751.zip |
Use testing.Fatalf() to log in tests
Using testing.Errorf() does not stop the test. This was never wanted.
Diffstat (limited to 'soundbox_test.go')
-rw-r--r-- | soundbox_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
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) } } |