X-Git-Url: http://nitlanguage.org diff --git a/tests/test_arr_tos_ropes.nit b/tests/test_arr_tos_ropes.nit index f9a416d..3f080c1 100644 --- a/tests/test_arr_tos_ropes.nit +++ b/tests/test_arr_tos_ropes.nit @@ -12,8 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -var rp: String = new RopeString.from("xxx") -rp += "yyy" +import standard +intrude import standard::ropes + +var rp: String = new Concat("xxx", "yyy") rp += "zzz" var arr = ["FlatString", rp] print arr.to_s