fix(core): Fixes wrap not slicing properly (#362)

- [X] Fixes wrap not slicing properly

Bumps release version
This commit is contained in:
Kamron Batman 2020-12-26 09:26:10 -08:00 committed by GitHub
parent 10a6e17640
commit 9c9591b098
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -43,6 +43,8 @@ namespace Server.Tests
[Theory]
[InlineData("this is a sentence that will probably wrap around a few times because it is long", 10, 6)]
[InlineData("An Unnamed House", 10, 6)]
[InlineData("Batville", 10, 6)]
public void TestWrap(string sentence, int perLine, int maxLines)
{
var expected = OldWrap(sentence, perLine, maxLines);