Skip to content

Commit

Permalink
fix test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Oct 30, 2024
1 parent ef6bfb6 commit e60b99b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package aws.sdk.kotlin.codegen.customization
import aws.sdk.kotlin.codegen.testutil.lines
import software.amazon.smithy.kotlin.codegen.test.*
import kotlin.test.Test
import kotlin.test.assertFalse
import kotlin.test.assertTrue

class AwsQueryModeCustomizationTest {
Expand Down Expand Up @@ -72,8 +73,8 @@ class AwsQueryModeCustomizationTest {
}

@Test
fun testNotExpectedForNonS3Model() {
assertTrue {
fun testNotExpectedForNonQueryCompatibleModel() {
assertFalse {
AwsQueryModeCustomization()
.enabledForService(nonQueryCompatibleModel, nonQueryCompatibleModel.defaultSettings())
}
Expand Down

0 comments on commit e60b99b

Please sign in to comment.