From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/unit/buffer.unit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/unit/buffer.unit') diff --git a/src/unit/buffer.unit b/src/unit/buffer.unit index 8ed1ec5..2a8f846 100644 --- a/src/unit/buffer.unit +++ b/src/unit/buffer.unit @@ -14,12 +14,12 @@ suite Buffer { test emptyFile { - Bu::FString sTmp("empty-XXXXXX"); + Bu::String sTmp("empty-XXXXXX"); Bu::File fEmpty = tempFile(sTmp); Bu::Buffer buf( fEmpty ); unitTest( buf.isEos() == false ); - Bu::FString sLine = buf.readLine(); + Bu::String sLine = buf.readLine(); unitTest( sLine == "" ); unitTest( fEmpty.isEos() == true ); unitTest( buf.isEos() == true ); -- cgit v1.2.3