From 3bd1610ec97c13f7ed6ade206e122ce1977a79c4 Mon Sep 17 00:00:00 2001 From: Mikhail Golubev Date: Thu, 5 Mar 2015 13:35:28 +0300 Subject: [PATCH] Use authenticated endpoint for Trac tests Otherwise tests fail since XML_RPC right is no longer granted to anonymous user. --- .../com/intellij/tasks/integration/TracIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tasks/tasks-tests/test/com/intellij/tasks/integration/TracIntegrationTest.java b/plugins/tasks/tasks-tests/test/com/intellij/tasks/integration/TracIntegrationTest.java index 1f98af9f4d3f..ef999016dea3 100644 --- a/plugins/tasks/tasks-tests/test/com/intellij/tasks/integration/TracIntegrationTest.java +++ b/plugins/tasks/tasks-tests/test/com/intellij/tasks/integration/TracIntegrationTest.java @@ -45,7 +45,7 @@ public class TracIntegrationTest extends TaskManagerTestCase { public void setUp() throws Exception { super.setUp(); myRepository = new TracRepository(); - myRepository.setUrl("http://trackers-tests.labs.intellij.net:8012/trac-12-p-1/rpc"); + myRepository.setUrl("http://trackers-tests.labs.intellij.net:8012/trac-12-p-1/login/rpc"); myRepository.setPassword("buildtest"); myRepository.setUsername("buildtest"); myRepository.setUseHttpAuthentication(true);