Skip to content

Commit 40ec22d

Browse files
Yostratonyxiao
authored andcommitted
plugin loading
1 parent ebd9edd commit 40ec22d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

e2e/connector-loading.test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,17 @@ echo ""
189189
# Step 8: unknown connector name → "not found"
190190
# ---------------------------------------------------------------------------
191191
echo "--- Step 8: unknown connector name → not found ---"
192-
STEP8_OUTPUT=$(npx sync-engine check \
192+
unknown_output=$(npx sync-engine check \
193193
--source nonexistent-xyz \
194194
--destination nonexistent-xyz \
195195
--source-config '{}' \
196196
--destination-config '{}' \
197197
2>&1 || true)
198-
if echo "$STEP8_OUTPUT" | grep -qi "not found"; then
198+
if echo "$unknown_output" | grep -qi "not found"; then
199199
echo " PASS: unknown connector correctly reports 'not found'"
200200
else
201201
echo " FAIL: unknown connector did not report 'not found'"
202-
echo " Output: $STEP8_OUTPUT"
202+
echo " Output: $unknown_output"
203203
exit 1
204204
fi
205205
echo ""

0 commit comments

Comments
 (0)