From a2d3baaf80f13c0113c2273b866987396e99971d Mon Sep 17 00:00:00 2001 From: beelit94 Date: Wed, 4 Jan 2017 15:52:56 +0800 Subject: [PATCH] purposely fail the test for testing notification --- test/test_terraform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_terraform.py b/test/test_terraform.py index eacb781..de4623a 100644 --- a/test/test_terraform.py +++ b/test/test_terraform.py @@ -155,7 +155,7 @@ class TestTerraform(object): def test_plan(self, plan, variables, expected_ret): tf = Terraform(working_dir=current_path, variables=variables) ret, out, err = tf.plan(plan) - assert ret == expected_ret + assert ret == 0 def test_fmt(self, fmt_test_file): tf = Terraform(working_dir=current_path, variables={'test_var': 'test'})