Skip to content

Commit

Permalink
Revert "use grpc@0.13.1"
Browse files Browse the repository at this point in the history
This reverts commit f686198.
  • Loading branch information
Stephen Sawchuk committed Apr 1, 2016
1 parent f686198 commit d579d4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/common/grpc-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'use strict';

var googleProtoFiles = require('google-proto-files');
var grpc = require('grpc');
var grpc = require('@stephenplusplus/grpc');
var is = require('is');
var nodeutil = require('util');
var path = require('path');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
"search"
],
"dependencies": {
"@stephenplusplus/grpc": "^0.14.1",
"JSONStream": "^1.0.7",
"array-uniq": "^1.0.2",
"arrify": "^1.0.0",
Expand All @@ -96,7 +97,6 @@
"gcs-resumable-upload": "^0.4.0",
"google-auto-auth": "^0.2.0",
"google-proto-files": "^0.1.1",
"grpc": "^0.13.1",
"hash-stream-validation": "^0.1.0",
"is": "^3.0.1",
"methmeth": "^1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions test/common/grpc-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
var assert = require('assert');
var extend = require('extend');
var googleProtoFiles = require('google-proto-files');
var grpc = require('grpc');
var grpc = require('@stephenplusplus/grpc');
var is = require('is');
var mockery = require('mockery-next');
var path = require('path');
Expand Down Expand Up @@ -90,7 +90,7 @@ describe('GrpcService', function() {

before(function() {
mockery.registerMock('google-proto-files', fakeGoogleProtoFiles);
mockery.registerMock('grpc', fakeGrpc);
mockery.registerMock('@stephenplusplus/grpc', fakeGrpc);
mockery.registerMock('../../lib/common/service.js', FakeService);

mockery.enable({
Expand Down

0 comments on commit d579d4e

Please sign in to comment.