Skip to content

Commit

Permalink
Fix codegen artifact unit test for Go 1.16 (#277)
Browse files Browse the repository at this point in the history
Fixes the codegen artifact unit test for Go 1.16 to work with the go.sum
file not being updated.
  • Loading branch information
jasdel authored Mar 12, 2021
1 parent 17f3261 commit a728c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/smithy-go-codegen-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ dependencies {
tasks.create<Exec>("verifyGoCodegen") {
dependsOn ("build")
workingDir("$buildDir/smithyprojections/smithy-go-codegen-test/source/go-codegen")
commandLine ("go", "test", "-run", "NONE", "./...")
commandLine ("go", "test", "-mod", "mod", "-run", "NONE", "./...")
}
tasks["build"].finalizedBy(tasks["verifyGoCodegen"])

0 comments on commit a728c92

Please sign in to comment.