diff options
author | Marecor M. Baclay <mbaclay@apache.org> | 2010-03-19 09:20:14 +0000 |
---|---|---|
committer | Marecor M. Baclay <mbaclay@apache.org> | 2010-03-19 09:20:14 +0000 |
commit | 286a4ee97ec5f4e92b839a196b0c207aef917d04 (patch) | |
tree | 314a069423e8fc69000a1eb9792293ae8d693ca2 | |
parent | 8d9c3f7613b06fa4fa173c5502f270f6e260a680 (diff) | |
download | archiva-286a4ee97ec5f4e92b839a196b0c207aef917d04.tar.gz archiva-286a4ee97ec5f4e92b839a196b0c207aef917d04.zip |
- replaced the missed hardcoded value with the value in the property file
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@925151 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java b/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java index 9a96246e5..4973064ac 100644 --- a/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java +++ b/archiva-modules/archiva-web/archiva-webapp-test/src/test/testng/org/apache/archiva/web/test/ArtifactManagementTest.java @@ -108,7 +108,7 @@ public class ArtifactManagementTest assertTextPresent( "<type>library</type>" ); String basePath = - "/archiva/repository/internal/" + groupId + "/" + artifactId + "/" + getVersion() + "/dotNetTypes-" + + "/archiva/repository/internal/" + groupId + "/" + artifactId + "/" + getVersion() + "/" + artifactId + "-" + getVersion(); assertLinkPresent( ".NET Library" ); assertElementPresent( "//a[@href='" + basePath + ".dll']" ); |