summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go')
-rw-r--r--vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go b/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
deleted file mode 100644
index 162a590c6..000000000
--- a/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/assert_test.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package assert
-
-import (
- "testing"
-)
-
-func TestLineNumbers(t *testing.T) {
- Equal(t, "foo", "foo", "msg!")
- //Equal(t, "foo", "bar", "this should blow up")
-}
-
-func TestNotEqual(t *testing.T) {
- NotEqual(t, "foo", "bar", "msg!")
- //NotEqual(t, "foo", "foo", "this should blow up")
-}