diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2014-02-28 17:52:16 -0800 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2014-02-28 17:52:16 -0800 |
commit | c9eea0961c8c6082b5f996b6a949f6d63d12322a (patch) | |
tree | edbde46a55b5da22460722977ba34a8fa70379f2 /tests/src | |
parent | dfc259473a26bb71bca226c8290d227fa954bcb8 (diff) | |
parent | 0f0548f6c32c5763e70d139939e8dc1717901d5f (diff) |
Merge branch 'bug/about-fragment-legacy-references' into develop
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/se/leap/bitmaskclient/test/testConfigurationWizard.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/se/leap/bitmaskclient/test/testConfigurationWizard.java b/tests/src/se/leap/bitmaskclient/test/testConfigurationWizard.java index 34d2ae26..55fd87ae 100644 --- a/tests/src/se/leap/bitmaskclient/test/testConfigurationWizard.java +++ b/tests/src/se/leap/bitmaskclient/test/testConfigurationWizard.java @@ -2,7 +2,7 @@ package se.leap.bitmaskclient.test; import java.io.IOException; -import se.leap.bitmaskclient.AboutFragment; +import se.leap.bitmaskclient.AboutActivity; import se.leap.bitmaskclient.ConfigurationWizard; import se.leap.bitmaskclient.ProviderDetailFragment; import se.leap.bitmaskclient.R; @@ -56,7 +56,7 @@ public class testConfigurationWizard extends ActivityInstrumentationTestCase2<Co public void testShowAbout() { solo.clickOnMenuItem(solo.getString(R.string.about)); - assertTrue("Provider details dialog did not appear", solo.waitForFragmentByTag(AboutFragment.TAG)); + assertTrue("Provider details dialog did not appear", solo.waitForActivity(AboutActivity.class)); } public void testShowSettings() { |