You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2018/01/29 05:29:24 UTC

commons-compress git commit: this is what you get for writing tests you can't run :-)

Repository: commons-compress
Updated Branches:
  refs/heads/master 7dcce66f1 -> 4f2f4727f


this is what you get for writing tests you can't run :-)


Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/4f2f4727
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/4f2f4727
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/4f2f4727

Branch: refs/heads/master
Commit: 4f2f4727f570a3f86249302dcbbdc053c07ae50a
Parents: 7dcce66
Author: Stefan Bodewig <bo...@apache.org>
Authored: Mon Jan 29 06:28:56 2018 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Mon Jan 29 06:28:56 2018 +0100

----------------------------------------------------------------------
 .../apache/commons/compress/archivers/tar/TarArchiveEntryTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/4f2f4727/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveEntryTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveEntryTest.java b/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveEntryTest.java
index 8eba959..e7ef826 100644
--- a/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveEntryTest.java
+++ b/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveEntryTest.java
@@ -194,7 +194,7 @@ public class TarArchiveEntryTest implements TarConstants {
     @Test
     public void preservesDriveSpecOnWindowsAndNetwareIfAskedTo() {
         assumeTrue("C:\\".equals(ROOT));
-        TarArchiveEntry t = new TarArchiveEntry(ROOT + "bar.txt", true);
+        TarArchiveEntry t = new TarArchiveEntry(ROOT + "foo.txt", true);
         assertEquals("C:/foo.txt", t.getName());
         t = new TarArchiveEntry(ROOT + "/foo.txt", LF_GNUTYPE_LONGNAME, true);
         assertEquals("C:/foo.txt", t.getName());