aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java b/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java
index a69563a73f..1ee0dff026 100644
--- a/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java
+++ b/src/test/java/com/google/devtools/build/lib/syntax/EvaluationTest.java
@@ -467,9 +467,9 @@ public class EvaluationTest extends EvaluationTestCase {
.testStatement("[ ] * 10", MutableList.empty())
.testStatement("[1, 2] * 0", MutableList.empty())
.testStatement("[1, 2] * -4", MutableList.empty())
- .testStatement(" 2 * [1, 2]", MutableList.of(env, 1, 2, 1, 2))
+ .testStatement("2 * [1, 2]", MutableList.of(env, 1, 2, 1, 2))
.testStatement("10 * []", MutableList.empty())
- .testStatement(" 0 * [1, 2]", MutableList.empty())
+ .testStatement("0 * [1, 2]", MutableList.empty())
.testStatement("-4 * [1, 2]", MutableList.empty());
}
@@ -484,9 +484,9 @@ public class EvaluationTest extends EvaluationTestCase {
.testStatement("( ) * 10", Tuple.empty())
.testStatement("(1, 2) * 0", Tuple.empty())
.testStatement("(1, 2) * -4", Tuple.empty())
- .testStatement(" 2 * (1, 2)", Tuple.of(1, 2, 1, 2))
+ .testStatement("2 * (1, 2)", Tuple.of(1, 2, 1, 2))
.testStatement("10 * ()", Tuple.empty())
- .testStatement(" 0 * (1, 2)", Tuple.empty())
+ .testStatement("0 * (1, 2)", Tuple.empty())
.testStatement("-4 * (1, 2)", Tuple.empty());
}