Commit 8632703
committed
Fix unbalanced parentheses in conditional test
- Fixed test case from '3 < 4) ifTrue: [10] ifFalse: [20]' to '(3 < 4) ifTrue: [10] ifFalse: [20]'
- Test now passes correctly: (3 < 4) ifTrue: [10] ifFalse: [20] -> 10 ✅
- Changed expected result from false to true since this should work1 parent 5d4e8cd commit 8632703
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
733 | 733 | | |
734 | 734 | | |
735 | 735 | | |
736 | | - | |
| 736 | + | |
737 | 737 | | |
738 | 738 | | |
739 | 739 | | |
| |||
0 commit comments