diff options
Diffstat (limited to 'tests/functional/consumer-with-deadletter/q.go')
-rw-r--r-- | tests/functional/consumer-with-deadletter/q.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/functional/consumer-with-deadletter/q.go b/tests/functional/consumer-with-deadletter/q.go index 25391c5..a79ad5b 100644 --- a/tests/functional/consumer-with-deadletter/q.go +++ b/tests/functional/consumer-with-deadletter/q.go @@ -2,7 +2,6 @@ package q import ( "errors" - "os" "runtime" "guuid" @@ -44,15 +43,10 @@ func MainTest() { g.TAssertEqualS(ok, true, "can't get filename") databasePath := file + ".db" - os.Remove(databasePath) - os.Remove(databasePath + "-shm") - os.Remove(databasePath + "-wal") - queue, err := New(databasePath) g.TErrorIf(err) defer queue.Close() - pub := func(payload []byte, flowID guuid.UUID) { unsent := UnsentMessage{ Topic: topicX, |