Skip to content

Commit b051f7b

Browse files
authored
Fix #445 remove U+23F4 that was allocated in Unicode 7 from test (#446)
1 parent aa1e914 commit b051f7b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

source/mir/format.d

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -911,10 +911,9 @@ version (mir_test) unittest
911911
{
912912
import mir.appender: scopedBuffer;
913913
auto w = scopedBuffer!char;
914-
w.print('\u23F4');
915914
w.print('щ');
916915
w.print('\U0010FFFE');
917-
assert(w.data == `'\u23F4''щ''\U0010FFFE'`);
916+
assert(w.data == `'щ''\U0010FFFE'`);
918917
}
919918

920919
/// Prints some string

0 commit comments

Comments
 (0)