From 9ae535cdfe8c39ab8488bfb210297bcc37b29b9e Mon Sep 17 00:00:00 2001 From: cpovirk Date: Tue, 30 Jan 2024 13:54:32 -0800 Subject: [PATCH] No public description PiperOrigin-RevId: 602831989 --- WORKSPACE | 10 +++++----- .../test/java/dev/cel/common/types/EnumTypeTest.java | 2 +- parser/src/test/java/dev/cel/parser/OperatorTest.java | 2 +- .../java/dev/cel/runtime/CelVariableResolverTest.java | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 74520223..dd6291bf 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -63,15 +63,15 @@ maven_install( "com.google.auto.value:auto-value-annotations:1.10.4", "com.google.code.findbugs:annotations:3.0.1", "com.google.errorprone:error_prone_annotations:2.23.0", - "com.google.guava:guava:32.1.3-jre", - "com.google.guava:guava-testlib:32.1.3-jre", + "com.google.guava:guava:33.0.0-jre", + "com.google.guava:guava-testlib:33.0.0-jre", "com.google.protobuf:protobuf-java:3.24.4", "com.google.protobuf:protobuf-java-util:3.24.4", "com.google.re2j:re2j:1.7", "com.google.testparameterinjector:test-parameter-injector:1.14", - "com.google.truth.extensions:truth-java8-extension:1.1.5", - "com.google.truth.extensions:truth-proto-extension:1.1.5", - "com.google.truth:truth:1.1.5", + "com.google.truth.extensions:truth-java8-extension:1.3.0", + "com.google.truth.extensions:truth-proto-extension:1.3.0", + "com.google.truth:truth:1.3.0", "org.antlr:antlr4-runtime:" + ANTLR4_VERSION, "org.jspecify:jspecify:0.2.0", "org.threeten:threeten-extra:1.7.2", diff --git a/common/src/test/java/dev/cel/common/types/EnumTypeTest.java b/common/src/test/java/dev/cel/common/types/EnumTypeTest.java index 3f59e401..3fdc4714 100644 --- a/common/src/test/java/dev/cel/common/types/EnumTypeTest.java +++ b/common/src/test/java/dev/cel/common/types/EnumTypeTest.java @@ -14,7 +14,7 @@ package dev.cel.common.types; -import static com.google.common.truth.Truth8.assertThat; +import static com.google.common.truth.Truth.assertThat; import com.google.common.collect.ImmutableMap; import org.junit.Before; diff --git a/parser/src/test/java/dev/cel/parser/OperatorTest.java b/parser/src/test/java/dev/cel/parser/OperatorTest.java index 93346e63..8f1a0bb8 100644 --- a/parser/src/test/java/dev/cel/parser/OperatorTest.java +++ b/parser/src/test/java/dev/cel/parser/OperatorTest.java @@ -14,7 +14,7 @@ package dev.cel.parser; -import static com.google.common.truth.Truth8.assertThat; +import static com.google.common.truth.Truth.assertThat; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; diff --git a/runtime/src/test/java/dev/cel/runtime/CelVariableResolverTest.java b/runtime/src/test/java/dev/cel/runtime/CelVariableResolverTest.java index 235ef151..3d2515ad 100644 --- a/runtime/src/test/java/dev/cel/runtime/CelVariableResolverTest.java +++ b/runtime/src/test/java/dev/cel/runtime/CelVariableResolverTest.java @@ -14,7 +14,7 @@ package dev.cel.runtime; -import static com.google.common.truth.Truth8.assertThat; +import static com.google.common.truth.Truth.assertThat; import static dev.cel.runtime.CelVariableResolver.hierarchicalVariableResolver; import com.google.common.collect.ImmutableMap;