Skip to content

Commit

Permalink
[pinpoint-apm#86] change docker cli with minikube
Browse files Browse the repository at this point in the history
  • Loading branch information
feelform committed Sep 12, 2023
1 parent a4bc6bb commit f35bb20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/instrumentation/module/fix-redis.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test(`redis destination id`, async (t) => {
)

client.on("error", function (error) {
console.error(error);
console.error(error)
})

client.set("key", "value", async function (error) {
Expand Down Expand Up @@ -81,7 +81,7 @@ test("ioredis destination id", async function (t) {

const spanevent = agent.dataSender.mockSpanChunk.spanEventList[1]
t.equal(spanevent.destinationId, "Redis", "Redis destionation ID check")
t.equal(spanevent.endPoint, `localhost:${port}`)
t.true(spanevent.endPoint.endsWith(`:${port}`), `localhost:${port}`)

redis.quit()
agent.completeTraceObject(trace)
Expand Down Expand Up @@ -127,7 +127,7 @@ test(`Fix app crash without callback function https://github.com/pinpoint-apm/pi
client.select(2)

client.on("error", function (error) {
console.error(error);
console.error(error)
})

client.set("key", "value", async function (error) {
Expand Down

0 comments on commit f35bb20

Please sign in to comment.