Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
Enkidu93 committed Nov 25, 2024
1 parent 939c142 commit 5406415
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public async Task RunAsync_PretranslateAll()

await env.RunBuildJobAsync(corpus1);

Assert.That(await env.GetPretranslateCountAsync(), Is.EqualTo(2));
Assert.That(await env.GetPretranslateCountAsync(), Is.EqualTo(4));
}

[Test]
Expand Down Expand Up @@ -296,7 +296,7 @@ public async Task RunAsync_RemoveFreestandingEllipses()
);
JsonArray? pretranslations = await env.GetPretranslationsAsync();
Assert.That(pretranslations, Is.Not.Null);
Assert.That(pretranslations.Count, Is.EqualTo(0));
Assert.That(pretranslations!.Count, Is.EqualTo(0));
}

[Test]
Expand Down

0 comments on commit 5406415

Please sign in to comment.