X-Git-Url: http://nitlanguage.org diff --git a/tests/base_string.nit b/tests/base_string.nit index 4ff4c8e..8199de6 100644 --- a/tests/base_string.nit +++ b/tests/base_string.nit @@ -12,12 +12,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -import string +import text redef class String redef fun output do - for c in self do c.output + for c in self.chars do c.output end end