From cb7362ce3cb5e46c21ddf110de8fa8a92a3990a8 Mon Sep 17 00:00:00 2001 From: Dominic Kramer Date: Thu, 15 Jun 2017 09:58:34 -0700 Subject: [PATCH] Update test name to match behavior --- packages/error-reporting/test/unit/configuration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/error-reporting/test/unit/configuration.js b/packages/error-reporting/test/unit/configuration.js index 4d1343d04bc..b1d13f0d306 100644 --- a/packages/error-reporting/test/unit/configuration.js +++ b/packages/error-reporting/test/unit/configuration.js @@ -92,7 +92,7 @@ describe('Configuration class', function() { assert.deepEqual(c.getServiceContext(), {service: 'node', version: undefined}); }); - it('Should specify to report unhandledRejections', function() { + it('Should specify to not report unhandledRejections', function() { assert.strictEqual(c.getReportUnhandledRejections(), false); }); });