Skip to content

Commit 44725e8

Browse files
minor symfony#61750 [Lock] fix DynamoDB integration test (xabbuh)
This PR was merged into the 7.4 branch. Discussion ---------- [Lock] fix DynamoDB integration test | Q | A | ------------- | --- | Branch? | 7.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT I accidentally broke the integration test in symfony#61737 when changing the visibility of the `createTable()` method to `private`. Commits ------- f3b4822 fix DynamoDB integration test
2 parents 9fd4503 + f3b4822 commit 44725e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Lock/Bridge/DynamoDb/Tests/Functional/Store/DynamoDbStoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static function setUpBeforeClass(): void
2727
}
2828

2929
$store = new DynamoDbStore(getenv('LOCK_DYNAMODB_DSN'));
30-
$store->createTable();
30+
(new \ReflectionMethod(DynamoDbStore::class, 'createTable'))->invoke($store);
3131
}
3232

3333
protected function getStore(): PersistingStoreInterface

0 commit comments

Comments
 (0)