Skip to content

Commit

Permalink
[MINOR] Fix corrupted git history (case-sensitive filename change)
Browse files Browse the repository at this point in the history
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'
  • Loading branch information
mboehm7 committed Feb 9, 2025
1 parent 4dd5ab3 commit 4e62522
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 181 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.io.File;

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

public class wordEmbeddingUseCase extends AutomatedTestBase {
public class WordEmbeddingTest extends AutomatedTestBase {

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

Expand Down

This file was deleted.

0 comments on commit 4e62522

Please sign in to comment.