Skip to content

Commit b420f04

Browse files
authored
fix issue #593 (#597)
1 parent 017a8a2 commit b420f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/CommandLine.Tests/Unit/ParserTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ public void When_HelpWriter_is_null_it_should_not_fire_exception()
902902
var sut = new Parser(config => config.HelpWriter = null);
903903
sut.ParseArguments<Simple_Options>(new[] {"--dummy"});
904904
//Assert
905-
sut.Settings.MaximumDisplayWidth.Should().Be(80);
905+
sut.Settings.MaximumDisplayWidth.Should().BeGreaterThan(1);
906906
}
907907
}
908908
}

0 commit comments

Comments
 (0)