Skip to content

Commit

Permalink
chore: adjust test import
Browse files Browse the repository at this point in the history
  • Loading branch information
chakhsu committed Dec 12, 2023
1 parent ff212d1 commit 0a79ed5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/benchmark/server-grpcity.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../../types')
const GrpcLoader = require('../../lib')
const path = require('path')

const implementation = {
Expand Down
2 changes: 1 addition & 1 deletion test/client.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../types')
const GrpcLoader = require('../lib')
const path = require('path')
const fs = require('fs')

Expand Down
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../types')
const GrpcLoader = require('../lib')
const path = require('path')
const { expect } = require('chai')

Expand Down
2 changes: 1 addition & 1 deletion test/server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../types')
const GrpcLoader = require('../lib')
const path = require('path')
const fs = require('fs')

Expand Down
2 changes: 1 addition & 1 deletion test/stream/client-v2.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../../types')
const GrpcLoader = require('../../lib')
const path = require('path')

const start = async (addr) => {
Expand Down
2 changes: 1 addition & 1 deletion test/stream/client.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../../types')
const GrpcLoader = require('../../lib')
const path = require('path')

const start = async (addr) => {
Expand Down
2 changes: 1 addition & 1 deletion test/stream/server-v2.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../../types')
const GrpcLoader = require('../../lib')
const path = require('path')

function timeout(ms) {
Expand Down
2 changes: 1 addition & 1 deletion test/stream/server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GrpcLoader = require('../../types')
const GrpcLoader = require('../../lib')
const path = require('path')

class Stream {
Expand Down

0 comments on commit 0a79ed5

Please sign in to comment.