|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -129,9 +129,7 @@ public void setUp() {
|
129 | 129 | Map<String, String> pm = provider.defaultParameters();
|
130 | 130 | pm.put("0", "alwaysFailing");
|
131 | 131 | pm.put("1", "alwaysFailing");
|
132 |
| - pm.put("2", standardListenSpec()); |
133 |
| - pm.put("3", standardLaunchSpec()); |
134 |
| - pm.put("4", standardJdiSpec()); |
| 132 | + pm.put("2", "local"); |
135 | 133 | setUp(builder -> builder.executionEngine(provider, pm));
|
136 | 134 | }
|
137 | 135 |
|
@@ -159,9 +157,7 @@ public void variables() {
|
159 | 157 | assertTrue(log.contains("This operation intentionally broken"), log);
|
160 | 158 | log = logged.get(Level.FINEST).get(0);
|
161 | 159 | assertTrue(
|
162 |
| - log.contains("Success failover -- 2 = " + standardListenSpec()) |
163 |
| - || log.contains("Success failover -- 3 = " + standardLaunchSpec()) |
164 |
| - || log.contains("Success failover -- 4 = " + standardJdiSpec()), |
| 160 | + log.contains("Success failover -- 2 = local"), |
165 | 161 | log);
|
166 | 162 | }
|
167 | 163 | }
|
0 commit comments