Fix a couple of references in test files

This commit is contained in:
murgatroid99 2019-10-10 15:01:28 -07:00
parent 86d6291925
commit 8a212ba2d9
2 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,8 @@ const assert = require('assert');
const fs = require('fs');
const path = require('path');
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');
const protoPackage = protoLoader.loadSync(

View File

@ -19,6 +19,7 @@
'use strict';
var childProcess = require('child_process');
const anyGrpc = require('../any_grpc');
var port;