Skip to content

Commit a360802

Browse files
Alexander Shturmmeta-codesync[bot]
authored andcommitted
finer_taint_SUITE.erl - added one more test comprehension case
Summary: addressing devmate's comment on D91284949 Reviewed By: kren1 Differential Revision: D91289280 fbshipit-source-id: 58d86568c44b388388767b01280c97c997b5216f
1 parent f78a24b commit a360802

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

finer_taint/test/finer_taint_SUITE.erl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,8 @@ comprehension_transform(_Config) ->
691691
test_comprehension("[{X, Y} || X <:- [1,2,3], Y <:- [a,b,c]].", print),
692692
test_comprehension("[X || <<X:2>> <:= <<1:8,2:8,3:8>>].", print),
693693
test_comprehension("[A || A := _V <:- #{1 => a, 2 => b}].", map),
694-
test_comprehension("[{X, Y} || X <- [1,2,3] && Y <- [a,b,c]].", print).
694+
test_comprehension("[{X, Y} || X <- [1,2,3] && Y <- [a,b,c]].", print),
695+
test_comprehension("[{X, Y} || X <:- [1,2,3] && Y <:- [a,b,c]].", print).
695696

696697
nested_case_main(Config) ->
697698
Leaks = compile_and_run_function(Config, case_clauses, nested_case_with_call_main),

0 commit comments

Comments
 (0)