Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

add suffix to language tests

+2 -4
+2 -4
test/language/test/language/directly_matching_case_subject_test.gleam
··· 29 29 } 30 30 31 31 // https://github.com/gleam-lang/gleam/issues/5612 32 - pub fn no_duplicate_let_after_case_with_same_named_variable() { 32 + pub fn no_duplicate_let_after_case_with_same_named_variable_test() { 33 33 let x = case #(1, 2) { 34 34 #(_, x) -> x 35 35 } 36 - 37 36 assert x == 2 38 37 } 39 38 40 39 // https://github.com/gleam-lang/gleam/issues/5612 41 - pub fn no_duplicate_let_after_case_with_same_named_variable_with_declaration_before_and_after() { 40 + pub fn no_duplicate_let_after_case_with_same_named_variable_with_declaration_before_and_after_test() { 42 41 let x = 0 43 42 let x = x 44 43 let x = case #(1, 2) { 45 44 #(_, x) -> x 46 45 } 47 - 48 46 let x = x 49 47 assert x == 2 50 48 }