summaryrefslogtreecommitdiff
path: root/test/integration/log_consumer.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/log_consumer.go')
-rw-r--r--test/integration/log_consumer.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/integration/log_consumer.go b/test/integration/log_consumer.go
deleted file mode 100644
index 4af438f..0000000
--- a/test/integration/log_consumer.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package test
-
-import (
- "testing"
-
- "github.com/testcontainers/testcontainers-go"
-)
-
-type LogConsumer struct {
- t *testing.T
-}
-
-func (lc *LogConsumer) Accept(l testcontainers.Log) {
- content := string(l.Content)
- lc.t.Logf("%s", content)
-}