diff --git a/cmd/jaeger/internal/integration/badger_test.go b/cmd/jaeger/internal/integration/badger_test.go index b5c62d5c21a..3c2a7bdc5a4 100644 --- a/cmd/jaeger/internal/integration/badger_test.go +++ b/cmd/jaeger/internal/integration/badger_test.go @@ -17,10 +17,6 @@ func TestBadgerStorage(t *testing.T) { StorageIntegration: integration.StorageIntegration{ SkipArchiveTest: true, CleanUp: purge, - - // TODO: remove this once badger supports returning spanKind from GetOperations - // Cf https://github.com/jaegertracing/jaeger/issues/1922 - GetOperationsMissingSpanKind: true, }, } s.e2eInitialize(t, "badger") diff --git a/plugin/storage/integration/badgerstore_test.go b/plugin/storage/integration/badgerstore_test.go index 6bec5b45365..de96851e5d5 100644 --- a/plugin/storage/integration/badgerstore_test.go +++ b/plugin/storage/integration/badgerstore_test.go @@ -54,9 +54,6 @@ func TestBadgerStorage(t *testing.T) { s := &BadgerIntegrationStorage{ StorageIntegration: StorageIntegration{ SkipArchiveTest: true, - - // TODO: remove this badger supports returning spanKind from GetOperations - GetOperationsMissingSpanKind: true, }, } s.CleanUp = s.cleanUp