Skip to content

Commit

Permalink
fixups post review
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Jan 2, 2025
1 parent f2dac7a commit 6d28e9f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions lib/network/rpc/sio-stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ class SIOStreamSocket {
encodedObj = {};
// user objects are simple flat objects and we want to
// copy all their properties

for (const k in arg) {
encodedObj[k] = this.encodeStreams(arg[k]);
}
Expand Down Expand Up @@ -415,7 +414,6 @@ class SIOStreamSocket {
decodedObj = {};
// user objects are simple flat objects and we want to
// copy all their properties

for (const k in arg) {
decodedObj[k] = this.decodeStreams(arg[k]);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"build": "tsc",
"prepare": "yarn build",
"ft_test": "jest tests/functional --testTimeout=120000 --forceExit",
"coverage": "nyc --clean jest tests --coverage --testTimeout=120000 --forceExit",
"coverage": "export NODE_OPTIONS=\"--tls-max-v1.2\" && nyc --clean jest tests --coverage --testTimeout=120000 --forceExit",
"build_doc": "cd documentation/listingAlgos/pics; dot -Tsvg delimiterStateChart.dot > delimiterStateChart.svg; dot -Tsvg delimiterMasterV0StateChart.dot > delimiterMasterV0StateChart.svg; dot -Tsvg delimiterVersionsStateChart.dot > delimiterVersionsStateChart.svg"
},
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/policyEvaluator/RequestContext.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@ describe('RequestContext', () => {
const ssoRC = new RequestContext(...ssoParams);
assert.strictEqual(ssoRC.getResource(), 'arn:scality:sso:::general-resource/specific-resource');
});
});
});

0 comments on commit 6d28e9f

Please sign in to comment.