Skip to content

Commit cbdf623

Browse files
Merge pull request #3 from JonathanStarup/format
style: col width
2 parents e31a289 + 4c74f5f commit cbdf623

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/Test/Property/TestListSet.flix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ mod JonathanStarup.Test.Property.TestListSet {
7676
pub def testInsertRedundant(): Bool \ IO = {
7777
def prop(l) = {
7878
let s1 = ListSet.fromIterable(l);
79-
let s2 = l |> List.head |> Option.map(hd -> ListSet.insert(hd, s1)) |> Option.getWithDefault(s1);
79+
let s2 = l |>
80+
List.head |>
81+
Option.map(hd -> ListSet.insert(hd, s1)) |>
82+
Option.getWithDefault(s1);
8083
assertExpect(expect = s1, s2)
8184
};
8285
prop |> runTest(1_000, -6859625i64)

0 commit comments

Comments
 (0)