Skip to content

Commit 301497f

Browse files
committed
Fix PostRedirectGetTest, close AsyncHttpClient#761
1 parent b0c6938 commit 301497f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

client/src/test/java/org/asynchttpclient/PostRedirectGetTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,27 @@ public AbstractHandler configureHandler() throws Exception {
4141

4242
// ------------------------------------------------------------ Test Methods
4343

44-
@Test(groups = { "standalone", "post_redirect_get" }, enabled = false)
44+
@Test(groups = { "standalone", "post_redirect_get" })
4545
public void postRedirectGet302Test() throws Exception {
4646
doTestPositive(302);
4747
}
4848

49-
@Test(groups = { "standalone", "post_redirect_get" }, enabled = false)
49+
@Test(groups = { "standalone", "post_redirect_get" })
5050
public void postRedirectGet302StrictTest() throws Exception {
5151
doTestNegative(302, true);
5252
}
5353

54-
@Test(groups = { "standalone", "post_redirect_get" }, enabled = false)
54+
@Test(groups = { "standalone", "post_redirect_get" })
5555
public void postRedirectGet303Test() throws Exception {
5656
doTestPositive(303);
5757
}
5858

59-
@Test(groups = { "standalone", "post_redirect_get" }, enabled = false)
59+
@Test(groups = { "standalone", "post_redirect_get" })
6060
public void postRedirectGet301Test() throws Exception {
61-
doTestNegative(301, false);
61+
doTestPositive(301);
6262
}
6363

64-
@Test(groups = { "standalone", "post_redirect_get" }, enabled = false)
64+
@Test(groups = { "standalone", "post_redirect_get" })
6565
public void postRedirectGet307Test() throws Exception {
6666
doTestNegative(307, false);
6767
}

0 commit comments

Comments
 (0)