Skip to content

Commit

Permalink
reduce maximum indentation threshold to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed May 24, 2014
1 parent 3189096 commit 50bea9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

var Indent = " "
var longFormThreshold = 20
var maxIndent = uint(20)
var maxIndent = uint(10)

func Message(actual interface{}, message string, expected ...interface{}) string {
if len(expected) == 0 {
Expand Down

0 comments on commit 50bea9a

Please sign in to comment.