@@ -90,7 +90,7 @@ public static Dictionary<string, object> CreatePactPathsDictionary(object reques
9090 {
9191 var methodJson = new Dictionary < string , object >
9292 {
93- { v4Request . Method ? . ToString ( ) ? . Replace ( "Method" , string . Empty ) ?? string . Empty , pathsContent }
93+ { v4Request . Method ? . ToString ( ) ? . Replace ( "Method" , string . Empty ) . ToLower ( ) ?? string . Empty , pathsContent }
9494 } ;
9595
9696 var json = new Dictionary < string , object >
@@ -138,7 +138,7 @@ public static Dictionary<string, object> CreatePactPathsDictionary(object reques
138138 {
139139 var methodJson = new Dictionary < string , object >
140140 {
141- { v3Request . Method ? . ToString ( ) ? . Replace ( "Method" , string . Empty ) ?? string . Empty , pathsContent }
141+ { v3Request . Method ? . ToString ( ) ? . Replace ( "Method" , string . Empty ) . ToLower ( ) ?? string . Empty , pathsContent }
142142 } ;
143143
144144 var json = new Dictionary < string , object >
@@ -186,7 +186,7 @@ public static Dictionary<string, object> CreatePactPathsDictionary(object reques
186186 {
187187 var methodJson = new Dictionary < string , object >
188188 {
189- { v2Request . Method ? . ToString ( ) ? . Replace ( "Method" , string . Empty ) ?? string . Empty , pathsContent }
189+ { v2Request . Method ? . ToString ( ) ? . Replace ( "Method" , string . Empty ) . ToLower ( ) ?? string . Empty , pathsContent }
190190 } ;
191191
192192 var json = new Dictionary < string , object >
0 commit comments