summaryrefslogtreecommitdiff
path: root/soundbox_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'soundbox_test.go')
-rw-r--r--soundbox_test.go6
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)
}
}