From c8c1d1a671385f4401c3f30f71b0888832787cac Mon Sep 17 00:00:00 2001 From: gouravkrosx Date: Tue, 23 Apr 2024 18:32:27 +0530 Subject: [PATCH] fix: remove return when tests names are not equal Signed-off-by: gouravkrosx --- main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main.go b/main.go index 82accca..a8073dd 100644 --- a/main.go +++ b/main.go @@ -234,7 +234,6 @@ func prepareMockAssertion(ctx context.Context, logger *zap.Logger, db1, db2 *tes for i := 0; i < len(readTcs1); i++ { if readTcs1[i].Name != readTcs2[i].Name { logger.Error("test case names are not equal", zap.String("pre-recorded", readTcs1[i].Name), zap.String("test-bench", readTcs2[i].Name)) - return false } //swap request timestamps req1Time := readTcs1[i].HTTPReq.Timestamp