Skip to content

Commit e06058a

Browse files
RoundingMode: Apply error-prone patch
1 parent c42fef4 commit e06058a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/sosy_lab/java_smt/test/FloatingPointFormulaManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public Formula visitFunction(
130130
Formula f, List<Formula> args, FunctionDeclaration<?> functionDeclaration) {
131131
assertThat(functionDeclaration.getKind())
132132
.isEqualTo(FunctionDeclarationKind.FP_SQRT);
133-
assertThat(args.size()).isEqualTo(2);
133+
assertThat(args).hasSize(2);
134134
return mgr.makeApplication(
135135
functionDeclaration,
136136
mgr.visit(args.get(0), this),

0 commit comments

Comments
 (0)