Skip to content

Commit 5b504f7

Browse files
Reverting change in e2e layer
1 parent f65b743 commit 5b504f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/utils/infrastructure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ def deploy(self) -> Dict[str, str]:
176176
CloudFormation Stack Outputs with output key and value
177177
"""
178178
stack_file = self._create_temp_cdk_app()
179-
synth_command = f"npx cdk@latest synth --app 'python {stack_file}' -o {self._cdk_out_dir}"
179+
synth_command = f"npx cdk synth --app 'python {stack_file}' -o {self._cdk_out_dir}"
180180
deploy_command = (
181-
f"npx cdk@latest deploy --app '{self._cdk_out_dir}' -O {self._stack_outputs_file} "
181+
f"npx cdk deploy --app '{self._cdk_out_dir}' -O {self._stack_outputs_file} "
182182
"--require-approval=never --method=direct"
183183
)
184184

0 commit comments

Comments
 (0)