Skip to content

Commit d214ba3

Browse files
committed
Fix test to check for false input in singular switch test
1 parent 24fc47e commit d214ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/nodes/function/test_switch_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ async def test_it_sends_nothing_when_input_is_false_and_checking_for_true(self):
461461
@pytest.mark.asyncio
462462
@pytest.mark.it("should check if input is indeed false")
463463
async def test_it_should_check_if_input_is_indeed_false(self):
464-
await _singular_switch_test(True, True, True, False)
464+
await _singular_switch_test(False, True, True, False)
465465

466466
@pytest.mark.asyncio
467467
@pytest.mark.it("sends nothing when input is false and checking for true")

0 commit comments

Comments
 (0)