1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-12 10:33:32 +00:00

Increase test coverage and remove useless code

This commit is contained in:
TwinProduction
2021-07-18 00:05:22 -04:00
committed by Chris
parent 56fedcedd1
commit 1a597f92ba
2 changed files with 3 additions and 12 deletions

View File

@@ -248,6 +248,9 @@ func TestStore_InvalidTransaction(t *testing.T) {
defer store.Close()
tx, _ := store.db.Begin()
tx.Commit()
if err := store.insertEvent(tx, 1, core.NewEventFromResult(&testSuccessfulResult)); err == nil {
t.Error("should've returned an error, because the transaction was already committed")
}
if err := store.insertResult(tx, 1, &testSuccessfulResult); err == nil {
t.Error("should've returned an error, because the transaction was already committed")
}