Skip to content

Commit

Permalink
fix key case
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens committed Jul 20, 2021
1 parent 0bcf66e commit 171c035
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 @@ -97,7 +97,7 @@ public class DefaultJobPersistence implements JobPersistence {
protected static final String DEFAULT_SCHEMA = "public";
private static final String BACKUP_SCHEMA = "import_backup";
public static final String DEPLOYMENT_ID_KEY = "deployment_id";
public static final String METADATA_KEY_COL = "KEY";
public static final String METADATA_KEY_COL = "key";
public static final String METADATA_VAL_COL = "value";

@VisibleForTesting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void cleanup() throws IOException {
}

@Test
public void testRunMigration() {
public void testRunMigration() throws Exception {
try (StubAirbyteDB stubAirbyteDB = new StubAirbyteDB()) {
final File file = Path
.of(Resources.getResource("migration/03a4c904-c91d-447f-ab59-27a43b52c2fd.gz").toURI())
Expand All @@ -112,8 +112,6 @@ public void testRunMigration() {
assertDatabaseVersion(jobPersistence, TARGET_VERSION);
assertPostMigrationConfigs(configRoot);
FileUtils.deleteDirectory(configRoot.toFile());
} catch (Exception e) {
throw new RuntimeException(e);
}
}

Expand Down

0 comments on commit 171c035

Please sign in to comment.