Feature/#106 fmt function (#151)

This commit is contained in:
3timeslazy
2018-10-29 16:57:39 -04:00
committed by Tim Voronov
parent b097527cd3
commit f6e465d556
4 changed files with 241 additions and 2 deletions
@@ -2,7 +2,6 @@ package objects_test
import (
"context"
"log"
"testing"
"github.com/MontFerret/ferret/pkg/runtime/values"
@@ -131,7 +130,6 @@ func TestMergeRecursive(t *testing.T) {
actual, err := objects.MergeRecursive(context.Background(), obj1, obj2)
log.Println(actual)
So(err, ShouldBeNil)
So(actual.Compare(expected), ShouldEqual, 0)
})