diff options
author | Eduardo Julian | 2018-02-11 19:58:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-02-11 19:58:20 -0400 |
commit | fd9def43d37bfa548f62915f62e5e6cb0a1dfcac (patch) | |
tree | 4ec91bb9d7bd32dc9ed346ebecbb1069d84cfdd6 /stdlib/test | |
parent | ca53b9929cfb4f5cef11c6f296e4f62bab518226 (diff) |
- Re-named lux/type/object to lux/type/object/interface.
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/type/object/interface.lux (renamed from stdlib/test/test/lux/type/object.lux) | 2 | ||||
-rw-r--r-- | stdlib/test/tests.lux | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/test/test/lux/type/object.lux b/stdlib/test/test/lux/type/object/interface.lux index 7ca601792..a296d9558 100644 --- a/stdlib/test/test/lux/type/object.lux +++ b/stdlib/test/test/lux/type/object/interface.lux @@ -1,7 +1,7 @@ (.module: lux (lux (data (coll [list])) - (type object))) + (type (object interface)))) ## No parameters (interface: Counter diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux index 98044e7d1..b59e8008a 100644 --- a/stdlib/test/tests.lux +++ b/stdlib/test/tests.lux @@ -69,7 +69,7 @@ (poly ["poly_." eq] ["poly_." functor])) (type ["_." implicit] - ["_." object] + (object ["_." interface]) ["_." resource]) (lang ["lang/_." syntax] ["_." type] |