Skip to content

Commit 056e20c

Browse files
auto commit
1 parent f46fde5 commit 056e20c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Examples/runtimes/net/src/migration/PlaintextToAWSDBE/awsdbe/MigrationStep1Test.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ public async Task TestMigrationStep1()
2121
string[] sortKeys = { "0", "1", "2", "3" };
2222

2323
// Successfully executes step 1
24-
success = await MigrationStep1.MigrationStep1Example(kmsKeyID, tableName, partitionKey, sortKeys[1], sortKeys[1]);
24+
bool success = await MigrationStep1.MigrationStep1Example(kmsKeyID, tableName, partitionKey, sortKeys[1], sortKeys[1]);
2525
Assert.True(success, "MigrationStep1 should complete successfully");
2626

2727
// Given: Step 0 has succeeded
28-
bool success = await MigrationStep0.MigrationStep0Example(tableName, partitionKey, sortKeys[0], sortKeys[0]);
28+
success = await MigrationStep0.MigrationStep0Example(tableName, partitionKey, sortKeys[0], sortKeys[0]);
2929
Assert.True(success, "MigrationStep0 should complete successfully");
3030

3131
// When: Execute Step 1 with sortReadValue=0, Then: Success (i.e. can read plaintext values from Step 0)

Examples/runtimes/net/src/migration/PlaintextToAWSDBE/awsdbe/MigrationStep2Test.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ public async Task TestMigrationStep2()
2121
string[] sortKeys = { "0", "1", "2", "3" };
2222

2323
// Successfully executes step 2
24-
success = await MigrationStep2.MigrationStep2Example(kmsKeyID, tableName, partitionKey, sortKeys[2], sortKeys[2]);
24+
bool success = await MigrationStep2.MigrationStep2Example(kmsKeyID, tableName, partitionKey, sortKeys[2], sortKeys[2]);
2525
Assert.True(success, "MigrationStep2 should complete successfully");
2626

2727
// Given: Step 0 has succeeded
28-
bool success = await MigrationStep0.MigrationStep0Example(tableName, partitionKey, sortKeys[0], sortKeys[0]);
28+
success = await MigrationStep0.MigrationStep0Example(tableName, partitionKey, sortKeys[0], sortKeys[0]);
2929
Assert.True(success, "MigrationStep0 should complete successfully");
3030

3131
// When: Execute Step 2 with sortReadValue=0, Then: Success (i.e. can read plaintext values from Step 0)

Examples/runtimes/net/src/migration/PlaintextToAWSDBE/awsdbe/MigrationStep3Test.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ public async Task TestMigrationStep3()
2222
string[] sortKeys = { "0", "1", "2", "3" };
2323

2424
// Successfully executes step 3
25-
success = await MigrationStep3.MigrationStep3Example(kmsKeyID, tableName, partitionKey, sortKeys[3], sortKeys[3]);
25+
bool success = await MigrationStep3.MigrationStep3Example(kmsKeyID, tableName, partitionKey, sortKeys[3], sortKeys[3]);
2626
Assert.True(success, "MigrationStep3 should complete successfully");
2727

2828
// Given: Step 0 has succeeded
29-
bool success = await MigrationStep0.MigrationStep0Example(tableName, partitionKey, sortKeys[0], sortKeys[0]);
29+
success = await MigrationStep0.MigrationStep0Example(tableName, partitionKey, sortKeys[0], sortKeys[0]);
3030
Assert.True(success, "MigrationStep0 should complete successfully");
3131

3232
// When: Execute Step 3 with sortReadValue=0, Then: should error out when reading plaintext items from Step 0

0 commit comments

Comments
 (0)