Skip to content

Commit 86b3e3f

Browse files
committed
Merge remote-tracking branch 'origin/fix-left-function-compare' into fix-left-function-compare
2 parents 5e51f04 + a329e89 commit 86b3e3f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/Hyperbee.Json.Tests/Path/Parser/FilterParserTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Linq;
33
using System.Linq.Expressions;
44
using System.Reflection;
@@ -122,7 +122,7 @@ public void ReturnExpectedResult_WhenUsingExpressionEvaluator( string filter, fl
122122
Assert.AreEqual( expected, result );
123123
}
124124

125-
[DataTestMethod]
125+
[TestMethod]
126126
[DataRow( "$.store.book[?(length(@.title) > 10)].title", "Sayings of the Century", typeof( JsonElement ) )]
127127
[DataRow( "$.store.book[?(length(@.title) > 10)].title", "Sayings of the Century", typeof( JsonNode ) )]
128128
public void ReturnExpectedResult_WhenUsingExpressionEvaluator( string filter, string expected, Type sourceType )
@@ -138,7 +138,7 @@ public void ReturnExpectedResult_WhenUsingExpressionEvaluator( string filter, st
138138
Assert.AreEqual( expected, result );
139139
}
140140

141-
[DataTestMethod]
141+
[TestMethod]
142142
[DataRow( "count(@.store.book) == 1", true, typeof( JsonElement ) )]
143143
[DataRow( "count(@.store.book.*) == 4", true, typeof( JsonElement ) )]
144144
[DataRow( "length(@.store.book) == 4", true, typeof( JsonElement ) )]

0 commit comments

Comments
 (0)