From cc092c46d1a9e50ea8ec1458a9d9176a551c47a0 Mon Sep 17 00:00:00 2001 From: Peter Saxton Date: Fri, 12 Jun 2020 14:11:28 +0100 Subject: manual formatting --- test/gleam/os_test.gleam | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/gleam/os_test.gleam b/test/gleam/os_test.gleam index 8a0b5f1..7b51017 100644 --- a/test/gleam/os_test.gleam +++ b/test/gleam/os_test.gleam @@ -17,12 +17,12 @@ pub fn env_test() { pub fn system_time_test() { let june_12_2020 = 1591966971 - os.system_time(os.Second) > june_12_2020 + {os.system_time(os.Second) > june_12_2020} |> should.equal(True) - os.system_time(os.Second) < june_12_2020 * 1000 + {os.system_time(os.Second) < june_12_2020 * 1000} |> should.equal(True) - os.system_time(os.Millisecond) > june_12_2020 * 1000 + {os.system_time(os.Millisecond) > june_12_2020 * 1000} |> should.equal(True) - os.system_time(os.Millisecond) < june_12_2020 * 1000000 + {os.system_time(os.Millisecond) < june_12_2020 * 1000000} |> should.equal(True) } -- cgit v1.2.3