diff --git a/modules/rh_node/tests/src/Functional/NodeBehaviorSettingsFormTest.php b/modules/rh_node/tests/src/Functional/NodeBehaviorSettingsFormTest.php
index 3b62f0d..7ab6ddb 100644
--- a/modules/rh_node/tests/src/Functional/NodeBehaviorSettingsFormTest.php
+++ b/modules/rh_node/tests/src/Functional/NodeBehaviorSettingsFormTest.php
@@ -34,8 +34,6 @@ class NodeBehaviorSettingsFormTest extends RabbitHoleBehaviorSettingsFormTestBas
    */
   protected $bundleEntityTypeName = 'node_type';
 
-  const TEST_BUNDLE = 'rh_node_test_content_type';
-
   /**
    * {@inheritdoc}
    */
@@ -62,7 +60,7 @@ class NodeBehaviorSettingsFormTest extends RabbitHoleBehaviorSettingsFormTestBas
    */
   protected function createEntityBundle() {
     $this->bundle = $this->drupalCreateContentType([
-      'type' => self::TEST_BUNDLE,
+      'type' => mb_strtolower($this->randomMachineName()),
     ]);
     return $this->bundle->id();
   }
@@ -90,8 +88,8 @@ class NodeBehaviorSettingsFormTest extends RabbitHoleBehaviorSettingsFormTestBas
    */
   protected function createEntity($action = NULL) {
     $values = [
-      'type' => self::TEST_BUNDLE,
-      'title' => 'Test Behavior Settings Node',
+      'type' => $this->bundle->id(),
+      'title' => $this->randomString(),
     ];
 
     if (isset($action)) {
diff --git a/tests/src/Functional/RabbitHoleBehaviorSettingsFormTestBase.php b/tests/src/Functional/RabbitHoleBehaviorSettingsFormTestBase.php
index e6785f2..66e5467 100644
--- a/tests/src/Functional/RabbitHoleBehaviorSettingsFormTestBase.php
+++ b/tests/src/Functional/RabbitHoleBehaviorSettingsFormTestBase.php
@@ -118,6 +118,29 @@ abstract class RabbitHoleBehaviorSettingsFormTestBase extends BrowserTestBase {
     $this->assertEquals($override, $saved_config->get('allow_override'));
   }
 
+  /**
+   * Test Rabbit Hole settings with allowed/disallowed overrides.
+   */
+  public function testAllowOverrideValue() {
+    $bundle_allow = $this->createEntityBundle();
+    $this->behaviorSettingsManager->saveBehaviorSettings([
+      'action' => 'access_denied',
+      'allow_override' => BehaviorSettings::OVERRIDE_ALLOW,
+      'redirect_code' => BehaviorSettings::REDIRECT_NOT_APPLICABLE,
+    ], $this->bundleEntityTypeName, $bundle_allow);
+    $this->loadCreateEntityForm();
+    $this->assertRabbitHoleSettings();
+
+    $bundle_disallow = $this->createEntityBundle();
+    $this->behaviorSettingsManager->saveBehaviorSettings([
+      'action' => 'access_denied',
+      'allow_override' => BehaviorSettings::OVERRIDE_DISALLOW,
+      'redirect_code' => BehaviorSettings::REDIRECT_NOT_APPLICABLE,
+    ], $this->bundleEntityTypeName, $bundle_disallow);
+    $this->loadCreateEntityForm();
+    $this->assertNoRabbitHoleSettings();
+  }
+
   /**
    * Test that bundle form with a configured bundle behaviour loads config.
    */
