Skip to content

Commit

Permalink
Fix exception in yaml persistence test (#6481)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliren authored Sep 27, 2021
1 parent 2fe6166 commit b563b1a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import io.airbyte.config.StandardSourceDefinition;
import io.airbyte.config.StandardSync;
import io.airbyte.config.StandardWorkspace;
import java.io.IOException;
import java.util.Collections;
import java.util.Map;
import java.util.stream.Stream;
Expand All @@ -25,7 +26,7 @@ public class YamlSeedConfigPersistenceTest {
private static YamlSeedConfigPersistence PERSISTENCE;

@BeforeAll
static void setup() {
static void setup() throws IOException {
PERSISTENCE = YamlSeedConfigPersistence.getDefault();
}

Expand Down

0 comments on commit b563b1a

Please sign in to comment.