Skip to content

Commit

Permalink
Format and rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pnicolucci committed Nov 14, 2024
1 parent 3f81e9c commit 9143a73
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-2.0/
*
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package com.ibm.ws.jsp23.fat.tests;
Expand Down Expand Up @@ -81,10 +81,9 @@ public static void testCleanup() throws Exception {
*
* @throws Exception
*/

@Test
@SkipForRepeat({SkipForRepeat.EE9_OR_LATER_FEATURES})
public void testJsp23to22FeatureChange() throws Exception {
@SkipForRepeat({ SkipForRepeat.EE9_OR_LATER_FEATURES })
public void testJsp23toJsp22FeatureChange() throws Exception {
WebConversation wc = new WebConversation();
wc.setExceptionsThrownOnErrorStatus(false);

Expand Down Expand Up @@ -124,8 +123,8 @@ public void testJsp23to22FeatureChange() throws Exception {
* @throws Exception
*/
@Test
@SkipForRepeat({SkipForRepeat.NO_MODIFICATION, SkipForRepeat.EE10_OR_LATER_FEATURES})
public void testJsp30to23FeatureChange() throws Exception {
@SkipForRepeat({ SkipForRepeat.NO_MODIFICATION, SkipForRepeat.EE10_OR_LATER_FEATURES })
public void testPages30toJsp23FeatureChange() throws Exception {
WebConversation wc = new WebConversation();
wc.setExceptionsThrownOnErrorStatus(false);

Expand Down Expand Up @@ -166,8 +165,8 @@ public void testJsp30to23FeatureChange() throws Exception {
* @throws Exception
*/
@Test
@SkipForRepeat({SkipForRepeat.NO_MODIFICATION, SkipForRepeat.EE9_FEATURES, SkipForRepeat.EE11_OR_LATER_FEATURES})
public void testJsp31to23FeatureChange() throws Exception {
@SkipForRepeat({ SkipForRepeat.NO_MODIFICATION, SkipForRepeat.EE9_FEATURES, SkipForRepeat.EE11_OR_LATER_FEATURES })
public void testPages31toJsp23FeatureChange() throws Exception {
WebConversation wc = new WebConversation();
wc.setExceptionsThrownOnErrorStatus(false);

Expand Down Expand Up @@ -208,8 +207,8 @@ public void testJsp31to23FeatureChange() throws Exception {
* @throws Exception
*/
@Test
@SkipForRepeat({SkipForRepeat.NO_MODIFICATION, SkipForRepeat.EE9_FEATURES, SkipForRepeat.EE10_FEATURES})
public void testJsp40to31FeatureChange() throws Exception {
@SkipForRepeat({ SkipForRepeat.NO_MODIFICATION, SkipForRepeat.EE9_FEATURES, SkipForRepeat.EE10_FEATURES })
public void testPages40toJsp31FeatureChange() throws Exception {
WebConversation wc = new WebConversation();
wc.setExceptionsThrownOnErrorStatus(false);

Expand Down

0 comments on commit 9143a73

Please sign in to comment.