Skip to content

Commit 40576de

Browse files
committed
Spotless
1 parent eaa98f8 commit 40576de

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
@@ -125,12 +125,12 @@ public enum Expectation {
125125
* This class contains the information about the test fixtures that is loaded
126126
* via the YAML.
127127
*
128-
* @param contains a list of strings that are expected in the SMT translation
128+
* @param contains a list of strings that are expected in the SMT translation
129129
* @param smtSettings required key/values in the smt settings.
130-
* @param expected expected output of Z3
131-
* @param state state of the test
132-
* @param javaSrc path to necessary java sources
133-
* @param keySrc contents of the key file to be loaded.
130+
* @param expected expected output of Z3
131+
* @param state state of the test
132+
* @param javaSrc path to necessary java sources
133+
* @param keySrc contents of the key file to be loaded.
134134
*/
135135
public record TestData(List<String> contains,
136136
Properties smtSettings,
@@ -157,15 +157,16 @@ private LoadedTestData load(String name) throws IOException, ProblemLoaderExcept
157157
Sequent sequent = proof.root().sequent();
158158

159159
SMTSettings settings = new DefaultSMTSettings(proof.getSettings().getSMTSettings(),
160-
ProofIndependentSettings.DEFAULT_INSTANCE.getSMTSettings(),
161-
proof.getSettings().getNewSMTSettings(), proof);
160+
ProofIndependentSettings.DEFAULT_INSTANCE.getSMTSettings(),
161+
proof.getSettings().getNewSMTSettings(), proof);
162162

163163
if (smtSettings != null) {
164164
settings.getNewSettings().readSettings(smtSettings);
165165
}
166166

167167
ModularSMTLib2Translator translator = new ModularSMTLib2Translator();
168-
var translation = translator.translateProblem(sequent, env.getServices(), settings).toString();
168+
var translation =
169+
translator.translateProblem(sequent, env.getServices(), settings).toString();
169170
env.dispose();
170171
return new LoadedTestData(name, this, translation);
171172
}

0 commit comments

Comments
 (0)