Skip to content

Commit

Permalink
remove method on custom request
Browse files Browse the repository at this point in the history
  • Loading branch information
millotp committed Apr 27, 2022
1 parent 53733bf commit b4534c4
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion scripts/ci/createMatrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function getClientMatrix({

for (const { language, client, output } of Object.values(GENERATORS)) {
// `algoliasearch` is an aggregation of clients
if (forLanguage !== language || client === 'algoliasearch') {
if (language !== forLanguage || client === 'algoliasearch') {
continue;
}

Expand Down
2 changes: 0 additions & 2 deletions tests/CTS/methods/requests/common/del.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[
{
"method": "del",
"testName": "allow del method for a custom path with minimal parameters",
"parameters": {
"path": "/test/minimal"
Expand All @@ -11,7 +10,6 @@
}
},
{
"method": "del",
"testName": "allow del method for a custom path with all parameters",
"parameters": {
"path": "/test/all",
Expand Down
2 changes: 0 additions & 2 deletions tests/CTS/methods/requests/common/get.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[
{
"method": "get",
"testName": "allow get method for a custom path with minimal parameters",
"parameters": {
"path": "/test/minimal"
Expand All @@ -11,7 +10,6 @@
}
},
{
"method": "get",
"testName": "allow get method for a custom path with all parameters",
"parameters": {
"path": "/test/all",
Expand Down
2 changes: 0 additions & 2 deletions tests/CTS/methods/requests/common/post.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[
{
"method": "post",
"testName": "allow post method for a custom path with minimal parameters",
"parameters": {
"path": "/test/minimal"
Expand All @@ -11,7 +10,6 @@
}
},
{
"method": "post",
"testName": "allow post method for a custom path with all parameters",
"parameters": {
"path": "/test/all",
Expand Down
2 changes: 0 additions & 2 deletions tests/CTS/methods/requests/common/put.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[
{
"method": "put",
"testName": "allow put method for a custom path with minimal parameters",
"parameters": {
"path": "/test/minimal"
Expand All @@ -11,7 +10,6 @@
}
},
{
"method": "put",
"testName": "allow put method for a custom path with all parameters",
"parameters": {
"path": "/test/all",
Expand Down

0 comments on commit b4534c4

Please sign in to comment.