Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Mar 14, 2024
1 parent 6036e59 commit cda4ebc
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,10 @@ public void testDefaultRecipesEnabledWhileCreatingApp() throws Exception {

@Test
public void testFirstFactorsArray() throws Exception {
if (StorageLayer.getStorage(process.getProcess()).getType() != STORAGE_TYPE.SQL) {
return;
}

JsonObject config = new JsonObject();
StorageLayer.getBaseStorage(process.getProcess()).modifyConfigToAddANewUserPoolForTesting(config, 1);

Expand Down Expand Up @@ -741,6 +745,10 @@ public void testInvalidTypedValueInCoreConfigWhileCreatingApp() throws Exception
return;
}

if (StorageLayer.getStorage(process.getProcess()).getType() != STORAGE_TYPE.SQL) {
return;
}

String[] properties = new String[]{
"access_token_validity", // long
"access_token_validity", // long
Expand Down

0 comments on commit cda4ebc

Please sign in to comment.