@@ -9,7 +9,7 @@ struct PostTermComparisonTests {
99 let lhs : [ String : [ String ] ] = [ : ]
1010 let rhs : [ String : [ String ] ] = [ : ]
1111
12- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == true )
12+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == true )
1313 }
1414
1515 @Test
@@ -23,7 +23,7 @@ struct PostTermComparisonTests {
2323 " post_tag " : [ " tag1 " , " tag2 " ]
2424 ]
2525
26- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == true )
26+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == true )
2727 }
2828
2929 @Test
@@ -37,7 +37,7 @@ struct PostTermComparisonTests {
3737 " post_tag " : [ " tag2 " , " tag1 " ]
3838 ]
3939
40- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == true )
40+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == true )
4141 }
4242
4343 @Test
@@ -49,7 +49,7 @@ struct PostTermComparisonTests {
4949 " post_tag " : [ " tag1 " , " tag2 " ]
5050 ]
5151
52- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == false )
52+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == false )
5353 }
5454
5555 @Test
@@ -61,7 +61,7 @@ struct PostTermComparisonTests {
6161 " category " : [ " 1 " , " 2 " , " 4 " ]
6262 ]
6363
64- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == false )
64+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == false )
6565 }
6666
6767 @Test
@@ -74,7 +74,7 @@ struct PostTermComparisonTests {
7474 " category " : [ " 1 " , " 2 " , " 3 " ]
7575 ]
7676
77- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == false )
77+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == false )
7878 }
7979
8080 @Test
@@ -86,7 +86,7 @@ struct PostTermComparisonTests {
8686 " category " : [ " 1 " , " 2 " , " 3 " ]
8787 ]
8888
89- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == true )
89+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == true )
9090 }
9191
9292 @Test
@@ -102,7 +102,7 @@ struct PostTermComparisonTests {
102102 " custom_tax " : [ " term1 " ]
103103 ]
104104
105- #expect( RemotePost . compareOtherTerms ( lhs, withAnother: rhs) == true )
105+ #expect( RemotePost . compare ( otherTerms : lhs, withAnother: rhs) == true )
106106 }
107107
108108}
0 commit comments