Skip to content

Commit

Permalink
Change error messages for ref asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
Enkidu93 committed Jul 26, 2024
1 parent 4242e7c commit 9bbd12a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SIL.Machine.Tests/Corpora/UsfmMemoryTextTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void GetRows_VerseDescriptiveTitle()
Assert.That(
rows[0].Ref,
Is.EqualTo(ScriptureRef.Parse("MAT 1:1")),
string.Join(",", rows.ToList().Select(tr => tr.Text))
string.Join(",", rows.ToList().Select(tr => tr.Ref.ToString()))
);
Assert.That(
rows[0].Text,
Expand All @@ -55,7 +55,7 @@ public void GetRows_LastSegment()
Assert.That(
rows[0].Ref,
Is.EqualTo(ScriptureRef.Parse("MAT 1:1")),
string.Join(",", rows.ToList().Select(tr => tr.Text))
string.Join(",", rows.ToList().Select(tr => tr.Ref.ToString()))
);
Assert.That(
rows[0].Text,
Expand Down

0 comments on commit 9bbd12a

Please sign in to comment.