From 7dd6e6a442c8d33f2c722a6920e83a67a9c02f1d Mon Sep 17 00:00:00 2001 From: Steven Li Date: Thu, 11 Jun 2020 18:50:49 -0700 Subject: [PATCH] removed a check condition from crash_gen --- tests/pytest/crash_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pytest/crash_gen.py b/tests/pytest/crash_gen.py index 486edb1ba0..7fe321a3eb 100755 --- a/tests/pytest/crash_gen.py +++ b/tests/pytest/crash_gen.py @@ -690,8 +690,8 @@ class StateHasData(AnyState): else: # should be STATE_HAS_DATA self.assertNoTask(tasks, DropDbTask) if (not self.hasTask(tasks, CreateFixedSuperTableTask)) : # if we didn't create the table - self.assertNoTask(tasks, DropFixedSuperTableTask) # we should not have a task that drops it - self.assertIfExistThenSuccess(tasks, ReadFixedDataTask) + self.assertNoTask(tasks, DropFixedSuperTableTask) # we should not have a task that drops it + # self.assertIfExistThenSuccess(tasks, ReadFixedDataTask) # State of the database as we believe it to be