Skip to content

Commit

Permalink
Merge pull request #15037 from iterate-ch/feature/ctera-update-tests
Browse files Browse the repository at this point in the history
Update hostnames and tokens.
  • Loading branch information
dkocher authored Aug 25, 2023
2 parents 8c61bb4 + 04efac8 commit 763a346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void disconnect() throws Exception {

@Before
public void setup() throws Exception {
final Host host = new Host(new CteraProtocol(), "mountainduck.ctera.me", new Credentials(
final Host host = new Host(new CteraProtocol(), "mountainduck2.ctera.me", new Credentials(
PROPERTIES.get("ctera.user"), PROPERTIES.get("ctera.password"),
PROPERTIES.get("ctera.token")
));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import ch.cyberduck.test.IntegrationTest;

import org.apache.commons.lang3.StringUtils;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;

Expand All @@ -43,9 +42,8 @@
public class CteraSessionTest extends AbstractCteraTest {

@Test
@Ignore
public void testLoginRefreshCookie() throws Exception {
final Host host = new Host(new CteraProtocol(), "alexdemo.ctera.me", new Credentials(
final Host host = new Host(new CteraProtocol(), "mountainduck.ctera.me", new Credentials(
StringUtils.EMPTY, StringUtils.EMPTY,
PROPERTIES.get("ctera.token")
));
Expand Down

0 comments on commit 763a346

Please sign in to comment.