File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
runtime/src/test/java/dev/cel/runtime Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -162,9 +162,9 @@ java_library(
162162
163163cel_android_local_test (
164164 name = "android_tests" ,
165- srcs = ["CelLiteRuntimeTest .java" ],
165+ srcs = ["CelLiteRuntimeAndroidTest .java" ],
166166 resources = [":compiled_exprs" ],
167- test_class = "dev.cel.runtime.CelLiteRuntimeTest " ,
167+ test_class = "dev.cel.runtime.CelLiteRuntimeAndroidTest " ,
168168 deps = [
169169 "//:java_truth" ,
170170 "//common:cel_ast_android" ,
Original file line number Diff line number Diff line change 3939import org .junit .runner .RunWith ;
4040
4141@ RunWith (TestParameterInjector .class )
42- public class CelLiteRuntimeTest {
42+ public class CelLiteRuntimeAndroidTest {
4343
4444 @ Test
4545 public void runtimeConstruction () {
@@ -222,7 +222,8 @@ public void eval_customFunctions() throws Exception {
222222 }
223223
224224 private static CelAbstractSyntaxTree readCheckedExpr (String compiledCelTarget ) throws Exception {
225- URL url = Resources .getResource (CelLiteRuntimeTest .class , compiledCelTarget + ".binarypb" );
225+ URL url =
226+ Resources .getResource (CelLiteRuntimeAndroidTest .class , compiledCelTarget + ".binarypb" );
226227 byte [] checkedExprBytes = Resources .toByteArray (url );
227228 CheckedExpr checkedExpr =
228229 CheckedExpr .parseFrom (checkedExprBytes , ExtensionRegistryLite .getEmptyRegistry ());
You can’t perform that action at this time.
0 commit comments