Skip to content

Commit df0417d

Browse files
committed
Fix tests
1 parent e5c3a96 commit df0417d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • internal/datastore/src/__test__

internal/datastore/src/__test__/db.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ const createLetterQueueTableCommand = new CreateTableCommand({
129129
],
130130
LocalSecondaryIndexes: [
131131
{
132-
IndexName: "timestamp-index",
132+
IndexName: "queueSortOrder-index",
133133
KeySchema: [
134134
{ AttributeName: "supplierId", KeyType: "HASH" }, // Partition key for LSI
135-
{ AttributeName: "queueSortOrder-index", KeyType: "RANGE" }, // Sort key for LSI
135+
{ AttributeName: "queueTimestamp", KeyType: "RANGE" }, // Sort key for LSI
136136
],
137137
Projection: {
138138
ProjectionType: "ALL",

0 commit comments

Comments
 (0)