Skip to content

Commit

Permalink
fix issue #593 (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
moh-hassan committed Mar 12, 2020
1 parent 017a8a2 commit b420f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CommandLine.Tests/Unit/ParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ public void When_HelpWriter_is_null_it_should_not_fire_exception()
var sut = new Parser(config => config.HelpWriter = null);
sut.ParseArguments<Simple_Options>(new[] {"--dummy"});
//Assert
sut.Settings.MaximumDisplayWidth.Should().Be(80);
sut.Settings.MaximumDisplayWidth.Should().BeGreaterThan(1);
}
}
}

0 comments on commit b420f04

Please sign in to comment.