diff options
author | Robin Rosenberg <roro01@handelsbanken.se> | 2012-08-21 18:21:17 +0200 |
---|---|---|
committer | Robin Rosenberg <robin.rosenberg@dewire.com> | 2012-08-21 19:43:59 +0200 |
commit | c4bc9c709a7bc8a7aec78a5bbe20ef52966a8b20 (patch) | |
tree | e8966a44b8572b94eceb0c3d4668c45ef03c66a1 | |
parent | f72b26f2d3776c72889a481f975c1add49980697 (diff) | |
download | jgit-c4bc9c709a7bc8a7aec78a5bbe20ef52966a8b20.tar.gz jgit-c4bc9c709a7bc8a7aec78a5bbe20ef52966a8b20.zip |
The Git API's only likes /, not \ in paths
Therefore this test fails on Windows
Change-Id: I4f73487b720ea1479e95108344f1dc3711106408
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java index 117ef88dc9..e7d66fb7f4 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java @@ -425,7 +425,7 @@ public class StashApplyCommandTest extends RepositoryTestCase { public void stashChangeInANewSubdirectory() throws Exception { String subdir = "subdir"; String fname = "file2.txt"; - String path = subdir + System.getProperty("file.separator") + fname; + String path = subdir + "/" + fname; String otherBranch = "otherbranch"; writeTrashFile(subdir, fname, "content2"); |