Skip to content

Commit c0b9b26

Browse files
committed
tests: Use D instead of d for double
1 parent 9e4abf4 commit c0b9b26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/apache/ibatis/builder/xml/dynamic/ExpressionEvaluatorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2023 the original author or authors.
2+
* Copyright 2009-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@ void shouldReturnFalseIfZero() {
7676
void shouldReturnFalseIfZeroWithScale() {
7777
class Bean {
7878
@SuppressWarnings("unused")
79-
public double d = 0.0d;
79+
public double d = 0.0D;
8080
}
8181
assertFalse(evaluator.evaluateBoolean("d", new Bean()));
8282
}

0 commit comments

Comments
 (0)