aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/test
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-03-09 16:09:55 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-03-09 16:09:55 -0700
commite5f47064bf7f51d63d8538b9e5a3f5c7a741158a (patch)
treee6ecdb412c08284547ed5893b0984d17f51090ba /src/node/test
parent6cbb237d61302da4236cd1a2517b3b1c82eb8d50 (diff)
Fixed segfault by fixing scope issue
Diffstat (limited to 'src/node/test')
-rw-r--r--src/node/test/math_client_test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/test/math_client_test.js b/src/node/test/math_client_test.js
index b9155fdfa8..d83f64116f 100644
--- a/src/node/test/math_client_test.js
+++ b/src/node/test/math_client_test.js
@@ -81,7 +81,7 @@ describe('Math client', function() {
done();
});
});
- it.only('should handle a client streaming request', function(done) {
+ it('should handle a client streaming request', function(done) {
var call = math_client.sum(function handleSumResult(err, value) {
assert.ifError(err);
assert.equal(value.num, 21);