Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 602831989
  • Loading branch information
cpovirk authored and copybara-github committed Jan 30, 2024
1 parent 61b20df commit 9ae535c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion parser/src/test/java/dev/cel/parser/OperatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9ae535c

Please sign in to comment.