diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-05-30 15:07:19 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-05-30 16:24:52 +0200 |
commit | 95bb19a57938b75a58169f816856be0cad4474b9 (patch) | |
tree | 231479f42aa725c0e11d0502905b617cb1f630b0 /tests/stdlib/tunittest.nim | |
parent | 5575cfd3ec6124fd0447b00b3edc40c0a25f79da (diff) | |
download | Nim-95bb19a57938b75a58169f816856be0cad4474b9.tar.gz |
moved random procs from math to its own module (breaking change)
Diffstat (limited to 'tests/stdlib/tunittest.nim')
-rw-r--r-- | tests/stdlib/tunittest.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tunittest.nim b/tests/stdlib/tunittest.nim index 4b210c23b..73113ac68 100644 --- a/tests/stdlib/tunittest.nim +++ b/tests/stdlib/tunittest.nim @@ -26,7 +26,7 @@ test "unittest multiple requires": require(true) -import math +import math, random from strutils import parseInt proc defectiveRobot() = randomize() |