summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2008-11-06 17:28:08 +0000
committerIulian Dragos <jaguarul@gmail.com>2008-11-06 17:28:08 +0000
commit8fd089646f8414a9e8483674bad52228dd2457fd (patch)
treea9aa91b55c03e49042f1725df88d14a3186880b5
parent7e736ed0a8109f00d721cb1a78152c91ef133b2d (diff)
downloadscala-8fd089646f8414a9e8483674bad52228dd2457fd.tar.gz
scala-8fd089646f8414a9e8483674bad52228dd2457fd.tar.bz2
scala-8fd089646f8414a9e8483674bad52228dd2457fd.zip
Fixed partes to run on 'quick' classes (was ass...
Fixed partes to run on 'quick' classes (was assuming the old directory structure).
-rw-r--r--src/partest/scala/tools/partest/PartestTask.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partest/scala/tools/partest/PartestTask.scala b/src/partest/scala/tools/partest/PartestTask.scala
index 73099f7cb1..56e52f96d4 100644
--- a/src/partest/scala/tools/partest/PartestTask.scala
+++ b/src/partest/scala/tools/partest/PartestTask.scala
@@ -172,7 +172,7 @@ class PartestTask extends Task {
(classpath.get.list map { fs => new File(fs) }) find { f =>
f.getName match {
case "scala-library.jar" => true
- case "classes" if (f.getParentFile.getName == "library") => true
+ case "library" if (f.getParentFile.getName == "classes") => true
case _ => false
}
}