Skip to content

Commit 98679cd

Browse files
Yostratonyxiao
authored andcommitted
plugin loading
1 parent 5d494fd commit 98679cd

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
@@ -191,14 +191,14 @@ echo ""
191191
# ---------------------------------------------------------------------------
192192
echo "--- Step 8: unknown connector name → not found ---"
193193
UNKNOWN_PARAMS='{"source_name":"nonexistent-xyz","source_config":{},"destination_name":"nonexistent-xyz","destination_config":{},"streams":[{"name":"x"}]}'
194-
STEP8_OUTPUT=$(npx sync-engine check \
194+
unknown_output=$(npx sync-engine check \
195195
--x-sync-params "$UNKNOWN_PARAMS" \
196196
2>&1 || true)
197-
if echo "$STEP8_OUTPUT" | grep -qi "not found"; then
197+
if echo "$unknown_output" | grep -qi "not found"; then
198198
echo " PASS: unknown connector correctly reports 'not found'"
199199
else
200200
echo " FAIL: unknown connector did not report 'not found'"
201-
echo " Output: $STEP8_OUTPUT"
201+
echo " Output: $unknown_output"
202202
exit 1
203203
fi
204204
echo ""

0 commit comments

Comments
 (0)