Skip to content

Commit

Permalink
publish mysql connector bugfix (#2899)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada committed Apr 15, 2021
1 parent 7e84ba4 commit d4d35d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
- sourceDefinitionId: 435bb9a5-7887-4809-aa58-28c27df0d7ad
name: MySQL
dockerRepository: airbyte/source-mysql
dockerImageTag: 0.2.4
dockerImageTag: 0.2.5
documentationUrl: https://docs.airbyte.io/integrations/sources/mysql
- sourceDefinitionId: 2470e835-feaf-4db6-96f3-70fd645acc77
name: Salesforce
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,7 @@ void testCheckSuccess() throws Exception {
void testCheckFailure() throws Exception {
((ObjectNode) config).put("password", "fake");
final AirbyteConnectionStatus actual = source.check(config);
final AirbyteConnectionStatus expected = new AirbyteConnectionStatus().withStatus(Status.FAILED)
.withMessage("Could not connect with provided configuration.");
assertEquals(expected, actual);
assertEquals(Status.FAILED, actual.getStatus());
}

@Test
Expand Down

0 comments on commit d4d35d6

Please sign in to comment.