Bump mongodb from 3.2.4 to 3.2.5 (#5604)

* Bump mongodb from 3.2.4 to 3.2.5

Bumps [mongodb](https://github.com/mongodb/node-mongodb-native) from 3.2.4 to 3.2.5.
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/master/HISTORY.md)
- [Commits](https://github.com/mongodb/node-mongodb-native/compare/v3.2.4...v3.2.5)

Signed-off-by: dependabot[bot] <support@dependabot.com>

* Tweak expected error message in a test to match a change
in the underlying package.
see: https://github.com/mongodb-js/mongodb-core/commit/83e224b

cc: @davimacedo
This commit is contained in:
dependabot[bot]
2019-05-21 22:33:31 +00:00
committed by peril-parse-community[bot]
parent 46408ee5e8
commit e9b8752c3f
3 changed files with 9 additions and 9 deletions

View File

@@ -94,7 +94,7 @@ describe('Server Url Checks', () => {
parseServerProcess.on('close', code => {
expect(code).toEqual(1);
expect(stdout).toBeUndefined();
expect(stderr).toContain('MongoNetworkError:');
expect(stderr).toContain('MongoNetworkError');
done();
});
});