diff --git a/src/autotests/TerminalCharacterDecoderTest.cpp b/src/autotests/TerminalCharacterDecoderTest.cpp index 4aa2cc10..4026ba63 100644 --- a/src/autotests/TerminalCharacterDecoderTest.cpp +++ b/src/autotests/TerminalCharacterDecoderTest.cpp @@ -99,8 +99,7 @@ void TerminalCharacterDecoderTest::testHTMLDecoder_data() // The below is wrong; only the first rendition is used (eg ignores the |) QTest::newRow("simple text with underline and italic rendition") << "hello" << QVector(6).fill(RE_UNDERLINE|RE_ITALIC) << "hello
"; - // The below should likely have & replaced by & - QTest::newRow("text with &") << "hello &there" << QVector(6).fill(DEFAULT_RENDITION) << "hello &there
"; + QTest::newRow("text with &") << "hello &there" << QVector(6).fill(DEFAULT_RENDITION) << "hello &there
"; } void TerminalCharacterDecoderTest::testHTMLDecoder()