Skip to content

Commit

Permalink
Merge pull request #743 from localgovdrupal/3.x
Browse files Browse the repository at this point in the history
release 3.0.8
  • Loading branch information
stephen-cox authored Jul 12, 2024
2 parents 8108629 + a3a3732 commit 904d042
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/install/system.cron.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threshold:
requirements_warning: 172800
requirements_error: 1209600
logging: 1
logging: true
3 changes: 2 additions & 1 deletion tests/src/Functional/LocalGovProfileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public function testLocalGovDrupalProfile() {
$this->fail('Uninstalled localgov_core module.');
}
catch (ModuleUninstallValidatorException $e) {
$this->assertStringContainsString('module is required', $e->getMessage());
$hasError = strlen($e->getMessage()) > 0 ? TRUE : FALSE;
$this->assertTrue($hasError);
}

// Test localgov_core:localgov_roles submodule is enabled.
Expand Down

0 comments on commit 904d042

Please sign in to comment.