From 123a77a2bcfbbbd73da1f870898c17376533d2e6 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan <gxtan1990@gmail.com> Date: Mon, 29 May 2023 11:41:24 +0900 Subject: [PATCH] DEV: Correct Capybara default max wait time setting in CI (#21801) We were not setting capybara's default max wait time correctly in CI due to a spelling error. This regressd in fc17045876bc31f8bf8018f10b1f90e6736b461b --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 721dddfbb2f..05b5bd33746 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,7 +29,7 @@ jobs: PGUSER: discourse PGPASSWORD: discourse USES_PARALLEL_DATABASES: ${{ matrix.build_type == 'backend' || matrix.build_type == 'system' }} - CABPYARA_DEFAULT_MAX_WAIT_TIME: 10 + CAPYBARA_DEFAULT_MAX_WAIT_TIME: 10 strategy: fail-fast: false