Skip to content

Commit

Permalink
terraform: fix dropped test error
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs committed Jul 29, 2020
1 parent ef071f3 commit 9499ec4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terraform/context_apply_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ func TestContext2Apply_unstable(t *testing.T) {
}

rs, err := rss.Current.Decode(schema.ImpliedType())
if err != nil {
t.Fatalf("decode error: %v", err)
}
got := rs.Value.GetAttr("random")
if !got.IsKnown() {
t.Fatalf("random is still unknown after apply")
Expand Down

0 comments on commit 9499ec4

Please sign in to comment.