Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Fix Node6 tests
Browse files Browse the repository at this point in the history
Change-Id: I7d14eac3d537608efd7a884724f6a085b5a7466d
  • Loading branch information
Matt Carroll committed Nov 21, 2018
1 parent 124ac8e commit aaade16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/v1-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class V1Agent {

this.agent.add(new PayloadResponse(
PLATFORMS.ACTIONS_ON_GOOGLE,
response.data.google),
response.data.google)
);
}

Expand Down Expand Up @@ -326,7 +326,7 @@ class V1Agent {
// convert the JSON to fufillment classes
let richResponse = richResponseMapping[consoleMessageJson.type](
consoleMessageJson,
V1_TO_V2_PLATFORM_NAME[consoleMessageJson.platform],
V1_TO_V2_PLATFORM_NAME[consoleMessageJson.platform]
);
richResponse ? richConsoleMessages = richConsoleMessages.concat(richResponse) : null;
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/v2-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class V2Agent {

this.agent.add(new PayloadResponse(
PLATFORMS.ACTIONS_ON_GOOGLE,
response.payload.google),
response.payload.google)
);
}

Expand Down

0 comments on commit aaade16

Please sign in to comment.