Skip to content

Commit 7f818a0

Browse files
authored
Adds test case that covers PR #3818. (#5553)
## Description PR #3818 is no longer necessary and this PR proves that the test cases added on in already pass on master without any additional change. ## Checklist - [x] I have linked to any relevant issues. - [x] I have commented my code, particularly in hard-to-understand areas. - [ ] I have updated the documentation where relevant (API docs, the reference, and the Sway book). - [x] I have added tests that prove my fix is effective or that my feature works. - [x] I have added (or requested a maintainer to add) the necessary `Breaking*` or `New Feature` labels where relevant. - [x] I have done my best to ensure that my PR adheres to [the Fuel Labs Code Review Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md). - [ ] I have requested a review from the relevant team or maintainers.
1 parent 491a07f commit 7f818a0

File tree

1 file changed

+2
-2
lines changed
  • test/src/e2e_vm_tests/test_programs/should_pass/language/where_clause_functions/src

1 file changed

+2
-2
lines changed

test/src/e2e_vm_tests/test_programs/should_pass/language/where_clause_functions/src/main.sw

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ fn main() -> u64 {
212212
assert(m.x == 12u64);
213213
assert(m.y == 20u64);
214214

215-
// TODO(Esdrubal): reactivate this once fix in #3621 is merged
216-
//test_ok_or(true, 0);
215+
test_ok_or(0, true);
216+
test_ok_or(true, 0);
217217

218218
42
219219
}

0 commit comments

Comments
 (0)