Skip to content

Commit d5bed93

Browse files
committed
update default to false in tests
1 parent 7207e20 commit d5bed93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/AppConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function testStruct(): void
2222
static::assertSame('My App', $config->getAppName());
2323
static::assertSame('my-secret', $config->getAppSecret());
2424
static::assertSame('http://localhost', $config->getRegistrationConfirmUrl());
25-
static::assertTrue($config->enforceDoubleSignature());
25+
static::assertFalse($config->enforceDoubleSignature());
2626
}
2727

2828
public function testRotationHardeningFlag(): void

tests/Registration/RegistrationServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class RegistrationServiceTest extends TestCase
4040

4141
protected function setUp(): void
4242
{
43-
$this->appConfiguration = new AppConfiguration('My App', 'my-secret', 'http://localhost');
43+
$this->appConfiguration = new AppConfiguration('My App', 'my-secret', 'http://localhost', true);
4444
$this->shopRepository = new MockShopRepository();
4545
$this->registerService = new RegistrationService(
4646
$this->appConfiguration,

0 commit comments

Comments
 (0)