update markdown printer to replace the weird non-breaking space character with the normal and cool space character

This commit is contained in:
2024-01-05 08:38:46 -07:00
parent 9f4c7bf380
commit 6a32e056a3
2 changed files with 8 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ using LocalModels;
public class RubricMarkdownTests
{
[Test]
public void TestCanParseOneItem()
{
@@ -15,6 +16,7 @@ public class RubricMarkdownTests
rubric.First().Label.Should().Be("this is the task");
rubric.First().Points.Should().Be(2);
}
[Test]
public void TestCanParseMultipleItems()
{
@@ -29,6 +31,7 @@ public class RubricMarkdownTests
rubric.ElementAt(1).Label.Should().Be("this is the other task");
rubric.ElementAt(1).Points.Should().Be(3);
}
[Test]
public void TestCanParseSinglePoint()
{
@@ -41,6 +44,7 @@ public class RubricMarkdownTests
rubric.First().Label.Should().Be("this is the task");
rubric.First().Points.Should().Be(1);
}
[Test]
public void TestCanParseSingleExtraCredit_LowerCase()
{