Fix import in benchmarks after cleanup (#3494)

Fix import of `up_to` after [recent](https://github.com/enso-org/enso/pull/3480) cleanup.
Benchmarks now run.
This commit is contained in:
Hubert Plociniczak 2022-05-30 16:59:35 +02:00 committed by GitHub
parent f0f3a343eb
commit dac49a44b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ class AtomFixtures extends DefaultInterpreterRunner {
val millionElementList = eval(
s"""|from Standard.Base.Data.List import Cons,Nil
|from Standard.Base.Data.Numbers import all
|from Standard.Base.Data.Range import all
|
|main =
| res = (1.up_to $million).fold Nil (acc -> x -> Cons x acc)