aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Saxton <peterhsaxton@gmail.com>2020-06-12 14:11:28 +0100
committerLouis Pilfold <louis@lpil.uk>2020-06-16 10:21:40 +0100
commitcc092c46d1a9e50ea8ec1458a9d9176a551c47a0 (patch)
tree84b9c2a5c2e1f682e759ad3d221f51f4604fc7a1
parent3454b03164a6558824f4df755e1fe1f4c653a654 (diff)
downloadgleam_stdlib-cc092c46d1a9e50ea8ec1458a9d9176a551c47a0.tar.gz
gleam_stdlib-cc092c46d1a9e50ea8ec1458a9d9176a551c47a0.zip
manual formatting
-rw-r--r--test/gleam/os_test.gleam8
1 files changed, 4 insertions, 4 deletions
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)
}