| Index: common/logging/fields_test.go
|
| diff --git a/common/logging/fields_test.go b/common/logging/fields_test.go
|
| index 3296cd0ab96fe3b38a3892a434c47115c3fd271b..5596d0fa171a196a387cdb9770620b13f401cad8 100644
|
| --- a/common/logging/fields_test.go
|
| +++ b/common/logging/fields_test.go
|
| @@ -128,17 +128,7 @@ func TestFields(t *testing.T) {
|
| })
|
|
|
| Convey(`Has a String representation: {"baz":"qux", "foo":"bar"}`, func() {
|
| - So(fm.FieldString(false), ShouldEqual, `{"baz":"qux", "foo":"bar"}`)
|
| - })
|
| -
|
| - Convey(`With a FilterOn key`, func() {
|
| - fm = fm.Copy(Fields{
|
| - FilterOnKey: "test",
|
| - })
|
| -
|
| - Convey(`Has a pruned String representation: {"baz":"qux", "foo":"bar"}`, func() {
|
| - So(fm.FieldString(true), ShouldEqual, `{"baz":"qux", "foo":"bar"}`)
|
| - })
|
| + So(fm.String(), ShouldEqual, `{"baz":"qux", "foo":"bar"}`)
|
| })
|
| })
|
| }
|
|
|