Skip to content

Commit

Permalink
fix(js): get and post capitalization in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ozwaldorf committed May 5, 2024
1 parent 88cd160 commit 4bc9b45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions services/js-poc/src/http/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ mod tests {
uri: "content-hash".to_string(),
path: Some("/".to_string()),
param: Some(json!({
"method": "Get",
"method": "GET",
"headers": null,
"path": "/",
"query": null,
Expand All @@ -119,7 +119,7 @@ mod tests {
uri: "content-hash".to_string(),
path: Some("/".to_string()),
param: Some(json!({
"method": "Get",
"method": "GET",
"headers": null,
"path": "/",
"query": null,
Expand All @@ -141,7 +141,7 @@ mod tests {
uri: "content-hash".to_string(),
path: Some("/".to_string()),
param: Some(json!({
"method": "Get",
"method": "GET",
"headers": null,
"path": "/",
"query": null,
Expand All @@ -163,7 +163,7 @@ mod tests {
uri: "content-hash".to_string(),
path: Some("/a".to_string()),
param: Some(json!({
"method": "Get",
"method": "GET",
"headers": null,
"path": "/a",
"query": null,
Expand All @@ -185,7 +185,7 @@ mod tests {
uri: "content-hash".to_string(),
path: Some("/a/b".to_string()),
param: Some(json!({
"method": "Post",
"method": "POST",
"headers": null,
"path": "/a/b",
"query": null,
Expand All @@ -207,7 +207,7 @@ mod tests {
uri: "content-hash".to_string(),
path: Some("/a/b".to_string()),
param: Some(json!({
"method": "Get",
"method": "GET",
"headers": null,
"path": "/a/b",
"query": { "a": "4" },
Expand Down

0 comments on commit 4bc9b45

Please sign in to comment.