From 4709bd069a0420308ffb3ff3a8fc5e1d772d138a Mon Sep 17 00:00:00 2001 From: beelit94 Date: Tue, 9 May 2017 17:51:52 +0800 Subject: [PATCH] fix test code --- 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 1a1dba5..0a2487d 100644 --- a/test/test_terraform.py +++ b/test/test_terraform.py @@ -195,7 +195,7 @@ class TestTerraform(object): assert ret == 0 def test_import(self, string_logger): - tf = Terraform(working_dir=os.path.join(current_path, 'import_test')) + tf = Terraform(working_dir=current_path) tf.import_cmd('aws_instance.foo', 'i-abc1234', no_color=IsFlagged) logs = string_logger.getvalue() print(logs)