mirror of https://github.com/grpc/grpc-node.git
Fix a couple of references in test files
This commit is contained in:
parent
86d6291925
commit
8a212ba2d9
|
@ -22,7 +22,8 @@ const assert = require('assert');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const interopServer = require('../interop/interop_server.js');
|
const interopServer = require('../interop/interop_server.js');
|
||||||
const grpc = require('../any_grpc').client;
|
const anyGrpc = require('../any_grpc');
|
||||||
|
const grpc = anyGrpc.client;
|
||||||
var protoLoader = require('../../packages/proto-loader');
|
var protoLoader = require('../../packages/proto-loader');
|
||||||
|
|
||||||
const protoPackage = protoLoader.loadSync(
|
const protoPackage = protoLoader.loadSync(
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var childProcess = require('child_process');
|
var childProcess = require('child_process');
|
||||||
|
const anyGrpc = require('../any_grpc');
|
||||||
|
|
||||||
var port;
|
var port;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue