Skip to content

Commit 39b0455

Browse files
committed
fix test
1 parent 8a3cd23 commit 39b0455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/DynamoDbFeatureRequesterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function putItem($namespace, $key, $version, $json)
5353
self::$dynamoDbClient->putItem(array(
5454
'TableName' => self::TABLE_NAME,
5555
'Item' => array(
56-
'namespace' => array('S' => self::PREFIX . '/' . $namespace),
56+
'namespace' => array('S' => self::PREFIX . ':' . $namespace),
5757
'key' => array('S' => $key),
5858
'version' => array('N' => strval($version)),
5959
'item' => array('S' => $json)

0 commit comments

Comments
 (0)