Fix unit test

This commit is contained in:
niksedk 2022-01-18 19:09:12 +01:00
parent 3cd5769c77
commit e2b7ca1351

View File

@ -745,7 +745,7 @@ namespace Test.FixCommonErrors
{
InitializeFixCommonErrorsLine(target, "<font color=\"#00ffff\">Yeah, so...</font> That goes in there," + Environment.NewLine + "does it ?<font color=\"#00ffff\">Yeah.</font>");
new FixMissingSpaces().Fix(_subtitle, new EmptyFixCallback { Language = "en" });
Assert.AreEqual("<font color=\"#00ffff\">Yeah, so...</font> That goes in there," + Environment.NewLine + "does it ? <font color=\"#00ffff\">Yeah.</font>"", _subtitle.Paragraphs[0].Text);
Assert.AreEqual("<font color=\"#00ffff\">Yeah, so...</font> That goes in there," + Environment.NewLine + "does it ? <font color=\"#00ffff\">Yeah.</font>", _subtitle.Paragraphs[0].Text);
}
}