diff --git a/sample_files/compare.expected b/sample_files/compare.expected index b74b86638..43bfa582f 100644 --- a/sample_files/compare.expected +++ b/sample_files/compare.expected @@ -278,7 +278,7 @@ sample_files/text_1.txt sample_files/text_2.txt f8f81946284fc625ac8e9ae441f31e6d - sample_files/todomvc_1.gleam sample_files/todomvc_2.gleam -9fe64f7d77ad99095ac29357554f3d71 - +6b3b8c9f1e813617819b97144cc5cc4a - sample_files/toml_1.toml sample_files/toml_2.toml c331bdb54c00b0a5b5a622dbd250042a - diff --git a/sample_files/todomvc_1.gleam b/sample_files/todomvc_1.gleam index 916b36975..a8fcb9fe1 100644 --- a/sample_files/todomvc_1.gleam +++ b/sample_files/todomvc_1.gleam @@ -19,7 +19,7 @@ pub fn main() { string.concat(["Listening on localhost:", int.to_string(port), " ✨"]) |> log.info - assert Ok(_) = elli.become(web, on_port: port) + let assert Ok(_) = elli.become(web, on_port: port) } pub fn start_database_connection_pool() -> pgo.Connection { diff --git a/sample_files/todomvc_2.gleam b/sample_files/todomvc_2.gleam index 45f1b1af6..c56aed9b2 100644 --- a/sample_files/todomvc_2.gleam +++ b/sample_files/todomvc_2.gleam @@ -20,7 +20,7 @@ pub fn main() { string.concat(["Listening on localhost:", int.to_string(port), " ✨"]) log.info(log_string) - assert Ok(_) = elli.become(web, on_port: port) + let assert Ok(_) = elli.become(web, on_port: port) } pub fn start_database_connection_pool() -> pgo.Connection {