Skip to content

Commit f3b4822

Browse files
committed
fix DynamoDB integration test
1 parent 9fd4503 commit f3b4822

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)