File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ checkForceIndexesArg =
19
19
withCustomConfig commandLineForceIndexArgs babbageConfigDir testLabel $ \ _ _ dbSyncEnv -> do
20
20
startDBSync dbSyncEnv
21
21
threadDelay 3_000_000
22
- assertEqQuery dbSyncEnv DB. queryPgIndexesCount 163 " there wasn't the correct number of indexes"
22
+ assertEqQuery dbSyncEnv DB. queryPgIndexesCount 165 " there wasn't the correct number of indexes"
23
23
where
24
24
testLabel = " CLAcheckForceIndexesArg"
25
25
commandLineForceIndexArgs =
@@ -32,7 +32,7 @@ checkNoForceIndexesArg =
32
32
withCustomConfigAndDropDB commandLineNoForceIndexArgs babbageConfigDir testLabel $ \ _ _ dbSyncEnv -> do
33
33
startDBSync dbSyncEnv
34
34
threadDelay 3_000_000
35
- assertEqQuery dbSyncEnv DB. queryPgIndexesCount 98 " there wasn't the correct number of indexes"
35
+ assertEqQuery dbSyncEnv DB. queryPgIndexesCount 100 " there wasn't the correct number of indexes"
36
36
where
37
37
testLabel = " CLAcheckNoForceIndexesArg"
38
38
commandLineNoForceIndexArgs =
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ checkForceIndexesArg =
17
17
startDBSync dbSync
18
18
19
19
-- Verify number of DB indexes
20
- assertEqQuery dbSync DB. queryPgIndexesCount 163 " unexpected number of indexes"
20
+ assertEqQuery dbSync DB. queryPgIndexesCount 165 " unexpected number of indexes"
21
21
where
22
22
cliArgs = initCommandLineArgs {claForceIndexes = True }
23
23
testLabel = " conwayCLACheckForceIndexesArg"
@@ -28,7 +28,7 @@ checkNoForceIndexesArg =
28
28
startDBSync dbSync
29
29
30
30
-- Verify number of DB indexes
31
- assertEqQuery dbSync DB. queryPgIndexesCount 98 " unexpected number of indexes"
31
+ assertEqQuery dbSync DB. queryPgIndexesCount 100 " unexpected number of indexes"
32
32
where
33
33
cliArgs = initCommandLineArgs {claForceIndexes = False }
34
34
testLabel = " conwayCLACheckNoForceIndexesArg"
You can’t perform that action at this time.
0 commit comments