Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nblumhardt committed May 31, 2017
1 parent d2dd76d commit 391882a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Serilog/Formatting/Display/Padding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static class Padding
/// </summary>
public static void Apply(TextWriter output, string value, Alignment? alignment)
{
if (!alignment.HasValue || value.Length <= alignment.Value.Width)
if (!alignment.HasValue || value.Length >= alignment.Value.Width)
{
output.Write(value);
return;
Expand Down

0 comments on commit 391882a

Please sign in to comment.