aboutsummaryrefslogtreecommitdiff
path: root/src/unit/fstring.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/unit/fstring.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unit/fstring.cpp b/src/unit/fstring.cpp
index 03df9c3..b00f11b 100644
--- a/src/unit/fstring.cpp
+++ b/src/unit/fstring.cpp
@@ -86,6 +86,9 @@ public:
86 unitTest( a == "abcd" ); 86 unitTest( a == "abcd" );
87 a.remove( 2, 5 ); 87 a.remove( 2, 5 );
88 unitTest( a == "ab" ); 88 unitTest( a == "ab" );
89 a += "cdefghijklmnop";
90 a.remove( 5, 1 );
91 unitTest( a = "abcdeghijklmnop" );
89 } 92 }
90}; 93};
91 94