Hi,
I'm trying to update JIRA's system base Url (through the testkit rest interface) using this code:
testKit.systemProperties().loginAs("testadmin", "testadmin").setProperty("baseUrl", "http://localhost:2990/jira");
But it doesn't seem to be working. The idea is to change the baseUrl after aplying a JIRA restoration.
Does anyone know how to do this?
I think you should use com.atlassian.jira.testkit.client.Backdoor.applicationProperties() instead systemProperties:
testKit.applicationProperties().loginAs("testadmin", "testadmin").setProperty("jira.baseurl", "http://localhost:2990/jira");
Ah yes.. copy/paste mistake. Thanks :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.