Skip to content

Commit 83546ca

Browse files
Drodtwadoon
authored andcommitted
Spotless
1 parent eceb30d commit 83546ca

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

key.core/src/test/java/de/uka/ilkd/key/smt/newsmt2/MasterHandlerTest.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ public enum Expectation {
133133
* This class contains the information about the test fixtures that is loaded
134134
* via the YAML.
135135
*
136-
* @param contains a list of strings that are expected in the SMT translation
136+
* @param contains a list of strings that are expected in the SMT translation
137137
* @param smtSettings required key/values in the smt settings.
138-
* @param expected expected output of Z3
139-
* @param state state of the test
140-
* @param javaSrc path to necessary java sources
141-
* @param keySrc contents of the key file to be loaded.
138+
* @param expected expected output of Z3
139+
* @param state state of the test
140+
* @param javaSrc path to necessary java sources
141+
* @param keySrc contents of the key file to be loaded.
142142
*/
143143
public record TestData(List<String> contains,
144144
Properties smtSettings,
@@ -165,15 +165,16 @@ private LoadedTestData load(String name) throws IOException, ProblemLoaderExcept
165165
Sequent sequent = proof.root().sequent();
166166

167167
SMTSettings settings = new DefaultSMTSettings(proof.getSettings().getSMTSettings(),
168-
ProofIndependentSettings.DEFAULT_INSTANCE.getSMTSettings(),
169-
proof.getSettings().getNewSMTSettings(), proof);
168+
ProofIndependentSettings.DEFAULT_INSTANCE.getSMTSettings(),
169+
proof.getSettings().getNewSMTSettings(), proof);
170170

171171
if (smtSettings != null) {
172172
settings.getNewSettings().readSettings(smtSettings);
173173
}
174174

175175
ModularSMTLib2Translator translator = new ModularSMTLib2Translator();
176-
var translation = translator.translateProblem(sequent, env.getServices(), settings).toString();
176+
var translation =
177+
translator.translateProblem(sequent, env.getServices(), settings).toString();
177178
env.dispose();
178179
return new LoadedTestData(name, this, translation);
179180
}

0 commit comments

Comments
 (0)