Skip to content

Commit c076be9

Browse files
committed
Adjust tests
Signed-off-by: Patrik Stas <patrik.stas@absa.africa>
1 parent 320fdcd commit c076be9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vcxagency-node/src/logging/logger-builder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const mainLoggerName = 'main'
5757

5858
const formatter = process.env.LOG_JSON_TO_CONSOLE === 'true' ? jsonFormatter : prettyFormatter
5959
const logLevel = process.env.LOG_LEVEL ? process.env.LOG_LEVEL : 'info'
60-
createConsoleLogger(mainLoggerName, formatter, logLevel, process.env.SILENT_WINSTON)
60+
createConsoleLogger(mainLoggerName, formatter, logLevel, process.env.SILENT_WINSTON === 'true')
6161

6262
module.exports = function (fullPath) {
6363
return addChildLogger(mainLoggerName, fullPath)

vcxagency-node/test/unit/messaging/aries-msgs.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ describe('onboarding', () => {
223223
// set up dummy server for alice to receive notifications from agency
224224
let serverReceivedNotification = {}
225225
let serverReceivedNotificationHeaders = {}
226-
const TEST_SERVER_PORT = 49412
226+
const TEST_SERVER_PORT = 49413
227227

228228
const appNotifications = express()
229229
appNotifications.use(bodyParser.json())

0 commit comments

Comments
 (0)