1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-29 22:17:29 +02:00

Feature/#106 fmt function (#151)

This commit is contained in:
3timeslazy
2018-10-29 23:57:39 +03:00
committed by Tim Voronov
parent b097527cd3
commit f6e465d556
4 changed files with 241 additions and 2 deletions

View File

@@ -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)
})