summaryrefslogtreecommitdiff
path: root/error_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'error_test.go')
-rw-r--r--error_test.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/error_test.go b/error_test.go
deleted file mode 100644
index e8fa62b4..00000000
--- a/error_test.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package roadrunner
-
-import (
- "github.com/stretchr/testify/assert"
- "testing"
-)
-
-func TestWorkerError_Error(t *testing.T) {
- e := WorkerError("error")
- assert.Equal(t, "error", e.Error())
-}
-
-func TestJobError_Error(t *testing.T) {
- e := JobError("error")
- assert.Equal(t, "error", e.Error())
-}