diff options
author | Peter Saxton <peterhsaxton@gmail.com> | 2020-06-12 18:36:49 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-06-16 10:21:40 +0100 |
commit | 515e85723ce88e86960989c1208b9c439610f607 (patch) | |
tree | 4e948268297a0bc3c11ebc18ad4a2d730886c4a8 | |
parent | 9f06809cfb60fce840d544dd4af60b1dd0ff67a9 (diff) | |
download | gleam_stdlib-515e85723ce88e86960989c1208b9c439610f607.tar.gz gleam_stdlib-515e85723ce88e86960989c1208b9c439610f607.zip |
run formatter
-rw-r--r-- | test/gleam/os_test.gleam | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/gleam/os_test.gleam b/test/gleam/os_test.gleam index 7b51017..45fc0ef 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) } |