Skip to content

Commit

Permalink
chore: fix test in go, optionals need to be supplied
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMSchmidt committed Aug 24, 2022
1 parent 0a220ad commit c8bd3b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/go/testing-matchers/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

var app = cdktf.Testing_App(nil)
var stack = NewMyStack(app, "stack")
var synth = cdktf.Testing_Synth(stack)
var synth = cdktf.Testing_Synth(stack, jsii.Bool(false))
var fullSynth = cdktf.Testing_FullSynth(stack)

var stackInvalid = NewMyStackInvalid(app, "stack-invalid")
Expand Down

0 comments on commit c8bd3b1

Please sign in to comment.