Skip to content

Commit

Permalink
Appease the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Jun 27, 2024
1 parent bb6d82f commit a0e1d31
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cmd/soroban-rpc/internal/config/toml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ func TestBasicTomlWriting(t *testing.T) {
// Note the newline at char 80. This also checks it adds a space after the
// comment when outputting multi-line comments, which go-toml does *not* do
// by default.
assert.Contains(t, out, "# (Deprecated, overidden by history-retention-window) configures the event\n# retention window expressed in number of ledgers, the default value is 17280\n# which corresponds to about 24 hours of history")
assert.Contains(t, out,
`# (Deprecated, overidden by history-retention-window) configures the event
# retention window expressed in number of ledgers, the default value is 17280
# which corresponds to about 24 hours of history`)
}

func TestRoundTrip(t *testing.T) {
Expand Down

0 comments on commit a0e1d31

Please sign in to comment.