Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert wrongly added test in #433 #436

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@
import com.adobe.cq.testing.junit.rules.CQAuthorPublishClassRule;
import com.adobe.cq.testing.junit.rules.CQRule;
import org.apache.sling.testing.clients.ClientException;
import org.apache.sling.testing.clients.SlingHttpResponse;
import org.junit.*;

import static org.junit.Assert.assertEquals;


/**
* Test that some paths exist out-of-the-box on the author service. This test
Expand Down Expand Up @@ -69,12 +66,6 @@ public static void beforeClass() throws ClientException {
public void testHomePageAuthor() throws ClientException {
adminAuthor.doGet("/", 200);
}
@Test
public void testHomePagePub() throws ClientException {
SlingHttpResponse response = adminPublish.doGet("/", 200);

assertEquals(response.getSlingStatusAsInt(), 200);
}

/**
* Verifies that the sites console exists on author
Expand Down
Loading