Skip to content

Commit b4286c3

Browse files
Thomas Reggimbroadst
Thomas Reggi
authored andcommitted
chore: fixes MacOS OCSP tests
1 parent c510fde commit b4286c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ functions:
375375
UNIFIED=${UNIFIED} \
376376
CA_FILE="$DRIVERS_TOOLS/.evergreen/ocsp/rsa/ca.pem" \
377377
OCSP_TLS_SHOULD_SUCCEED="${OCSP_TLS_SHOULD_SUCCEED}" \
378-
sh ${PROJECT_DIRECTORY}/.evergreen/run-ocsp-tests.sh
378+
bash ${PROJECT_DIRECTORY}/.evergreen/run-ocsp-tests.sh
379379
run-valid-ocsp-server:
380380
- command: shell.exec
381381
params:

test/functional/operation_generators_example.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2220,7 +2220,7 @@ describe('Operation (Generators)', function() {
22202220
yield collection.insertMany([{ a: 1 }, { b: 2 }], { w: 1 });
22212221

22222222
// Remove all the document
2223-
collection.removeMany();
2223+
yield collection.removeMany();
22242224

22252225
// Fetch all results
22262226
var items = yield collection.find().toArray();

0 commit comments

Comments
 (0)