summaryrefslogtreecommitdiff
path: root/test/integration/log_consumer.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-14 17:49:28 -0600
committermo khan <mo@mokhan.ca>2025-05-14 17:49:28 -0600
commit564e140de454c78d7e6d34044bb78f53bd0b2bf3 (patch)
treef85607ebfb2575bce94b5618250ebd957f965f6e /test/integration/log_consumer.go
parent7797dffa1412ca0e5a0ba95eb8aa39cddce8d10e (diff)
test: remove old oidc test server
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)
-}