Skip to content

Commit 4e62522

Browse files
committed
[MINOR] Fix corrupted git history (case-sensitive filename change)
A recent change corrupted the git history, such that on Windows with case-insensitive file system, even a fresh git clone caused uncommitted changes which cannot be resolved via stash or restore. Here is the output from git clone: warning: the following paths have collided (e.g. case-sensitive paths on a case-insensitive filesystem) and only one from the same colliding group is in the working tree: 'src/test/java/org/apache/sysds/test/functions/compress/wordembedding/WordEmbeddingUseCase.java' 'src/test/java/org/apache/sysds/test/functions/compress/wordembedding/wordEmbeddingUseCase.java'
1 parent 4dd5ab3 commit 4e62522

File tree

2 files changed

+1
-181
lines changed

2 files changed

+1
-181
lines changed

src/test/java/org/apache/sysds/test/functions/compress/wordembedding/wordEmbeddingUseCase.java renamed to src/test/java/org/apache/sysds/test/functions/compress/wordembedding/WordEmbeddingTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
import static org.junit.Assert.assertEquals;
2323
import static org.junit.Assert.assertTrue;
24-
import static org.junit.Assert.fail;
2524

2625
import java.io.File;
2726

@@ -39,7 +38,7 @@
3938
import org.apache.sysds.test.functions.compress.table.CompressedTableOverwriteTest;
4039
import org.junit.Test;
4140

42-
public class wordEmbeddingUseCase extends AutomatedTestBase {
41+
public class WordEmbeddingTest extends AutomatedTestBase {
4342

4443
protected static final Log LOG = LogFactory.getLog(CompressedTableOverwriteTest.class.getName());
4544

src/test/java/org/apache/sysds/test/functions/compress/wordembedding/WordEmbeddingUseCase.java

Lines changed: 0 additions & 179 deletions
This file was deleted.

0 commit comments

Comments
 (0)