Skip to content

Commit

Permalink
Fix Github CI by explicitly creating necessary directories. (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattl-netflix committed Apr 18, 2023
1 parent 7247964 commit 075d2f4
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -39,6 +39,7 @@
import org.apache.commons.io.FileUtils;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

/** Created by aagrawal on 12/5/18. */
Expand All @@ -59,6 +60,11 @@ public TestMetaV2Proxy() {
abstractBackupPathProvider = injector.getProvider(AbstractBackupPath.class);
}

@Before
public void setUp() {
new File(configuration.getDataFileLocation()).mkdirs();
}

@Test
public void testMetaPrefix() {
// Null date range
Expand Down

0 comments on commit 075d2f4

Please sign in to comment.