Fix go test output

This commit is contained in:
tidwall 2020-10-26 16:32:22 -07:00
parent f413da4ba3
commit 14666ffbfc
1 changed files with 19 additions and 18 deletions

View File

@ -1101,25 +1101,26 @@ func Example_descKeys() {
})
return nil
})
// Output:
//user:101:first: Janet
//user:101:last: Prichard
//user:100:first: Tom
//user:100:last: Johnson
//user:101:first: Janet
//user:101:last: Prichard
//user:102:first: Alan
//user:102:last: Cooper
//user:102:first: Alan
//user:102:last: Cooper
//user:101:last: Prichard
//user:101:first: Janet
//user:102:last: Cooper
//user:102:first: Alan
//user:101:last: Prichard
//user:101:first: Janet
//user:100:last: Johnson
//user:100:first: Tom
// user:101:first: Janet
// user:101:last: Prichard
// user:100:first: Tom
// user:100:last: Johnson
// user:101:first: Janet
// user:101:last: Prichard
// user:102:first: Alan
// user:102:last: Cooper
// user:102:first: Alan
// user:102:last: Cooper
// user:101:last: Prichard
// user:101:first: Janet
// user:102:last: Cooper
// user:102:first: Alan
// user:101:last: Prichard
// user:101:first: Janet
// user:100:last: Johnson
// user:100:first: Tom
}
func ExampleDesc() {