Skip to content

Commit e1bc5b1

Browse files
committed
Fix integration tests #234
1 parent 8de3f3e commit e1bc5b1

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

metafix/src/test/resources/org/metafacture/metafix/integration/conditional/fromJson/toJson/ifInArrayOfStrings/expected.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"test" : "cat",
3-
"animals" : [ "cat", "dog", "zebra" ]
3+
"animals" : [ "cat", "dog", "zebra" ],
4+
"this" : "works"
45
}
56
{
67
"test" : "cat",
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
unless in("test","animals[]")
1+
if in("test","animals[]")
22
add_field("this","works")
33
end
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"test" : "cat",
3-
"animal" : "cat"
3+
"animal" : "cat",
4+
"this" : "works"
45
}
56
{
67
"test" : "cat",
7-
"animal" : "dog",
8-
"this" : "works"
8+
"animal" : "dog"
99
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
unless in("animal","test")
1+
if in("animal","test")
22
add_field("this","works")
33
end

0 commit comments

Comments
 (0)