From ac934cf003cf36401152b129a56520980d51c962 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 7 Feb 2017 12:01:27 -0800 Subject: [PATCH] terraform: add one more forgotten ordering assertion --- terraform/graph_builder_apply_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/terraform/graph_builder_apply_test.go b/terraform/graph_builder_apply_test.go index 272e99722e..4dbb87a441 100644 --- a/terraform/graph_builder_apply_test.go +++ b/terraform/graph_builder_apply_test.go @@ -144,6 +144,10 @@ func TestApplyGraphBuilder_depCbd(t *testing.T) { t, g, "aws_instance.A", "aws_instance.A (destroy)") + testGraphHappensBefore( + t, g, + "aws_instance.A", + "aws_instance.B") testGraphHappensBefore( t, g, "aws_instance.B",