Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 0744ce5

Browse files
committed
fix(tests) fixing assertion test for logger which failed on undefined variable
1 parent e6a8f0f commit 0744ce5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/tests/server/core.server.config.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ describe('Configuration Tests:', function () {
438438
};
439439

440440
var options = logger.getOptions();
441-
options.should.deepEqual(config.log.options);
441+
should.deepEqual(options, config.log.options);
442442
});
443443

444444
it('should verify that a writable stream was created using the logger configuration', function () {

0 commit comments

Comments
 (0)