Fix MSVC warning C4125 "decimal digit terminates octal escape sequence".
MSVC somewhat justifiably warns when it sees an octal escape immediately followed by a decimal digit, even if the octal escape used the maximum of 3 octal digits. Avoiding this warning while preserving the test's semantics (as viewed by the library) is easy - simply separate the string literal after the octal escape is finished.