You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by jackylk <gi...@git.apache.org> on 2018/05/03 07:42:43 UTC

[GitHub] carbondata pull request #2246: [CARBONDATA-2413] After running CarbonWriter,...

Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2246#discussion_r185716301
  
    --- Diff: store/sdk/src/test/java/org/apache/carbondata/store/LocalCarbonStoreTest.java ---
    @@ -28,9 +28,16 @@
     import org.apache.carbondata.sdk.file.TestUtil;
     
     import org.apache.commons.io.FileUtils;
    +import org.junit.Before;
     import org.junit.Test;
     
    +import static org.apache.carbondata.sdk.file.TestUtil.setSystemLocation;
    +
     public class LocalCarbonStoreTest {
    +  @Before
    +  public void test() {
    +    setSystemLocation();
    --- End diff --
    
    You should set it back to null after the testcase


---