Skip to content

Commit

Permalink
remove extra Connection name check
Browse files Browse the repository at this point in the history
  • Loading branch information
dizel852 committed Dec 29, 2022
1 parent 8e47c78 commit dfb19c7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ describe("Connection - main actions", () => {
expect(interception.request)
.property("body")
.to.contain({
name: `${sourceName} <> ${destName}Connection name`,
name: `${sourceName} <> ${destName}`,
prefix: "auto_test",
namespaceDefinition: "customformat",
namespaceFormat: "${SOURCE_NAMESPACE}_test",
Expand Down Expand Up @@ -266,7 +266,7 @@ describe("Connection - main actions", () => {
expect(interception.request)
.property("body")
.to.contain({
name: `${sourceName} <> ${destName}Connection name`,
name: `${sourceName} <> ${destName}`,
namespaceDefinition: "customformat",
namespaceFormat: "${SOURCE_NAMESPACE}_DestinationNamespaceCustomFormat",
status: "active",
Expand Down Expand Up @@ -332,7 +332,7 @@ describe("Connection - main actions", () => {
expect(interception.request)
.property("body")
.to.contain({
name: `${sourceName} <> ${destName}Connection name`,
name: `${sourceName} <> ${destName}`,
namespaceDefinition: "destination",
namespaceFormat: "${SOURCE_NAMESPACE}",
status: "active",
Expand Down

0 comments on commit dfb19c7

Please sign in to comment.