Skip to content

Commit e60b99b

Browse files
committed
fix test assertion
1 parent ef6bfb6 commit e60b99b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

codegen/aws-sdk-codegen/src/test/kotlin/aws/sdk/kotlin/codegen/customization/AwsQueryModeCustomizationTest.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ package aws.sdk.kotlin.codegen.customization
77
import aws.sdk.kotlin.codegen.testutil.lines
88
import software.amazon.smithy.kotlin.codegen.test.*
99
import kotlin.test.Test
10+
import kotlin.test.assertFalse
1011
import kotlin.test.assertTrue
1112

1213
class AwsQueryModeCustomizationTest {
@@ -72,8 +73,8 @@ class AwsQueryModeCustomizationTest {
7273
}
7374

7475
@Test
75-
fun testNotExpectedForNonS3Model() {
76-
assertTrue {
76+
fun testNotExpectedForNonQueryCompatibleModel() {
77+
assertFalse {
7778
AwsQueryModeCustomization()
7879
.enabledForService(nonQueryCompatibleModel, nonQueryCompatibleModel.defaultSettings())
7980
}

0 commit comments

Comments
 (0)