Skip to content

Commit fce7e86

Browse files
committed
Use tests submodule
1 parent 96904e4 commit fce7e86

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ go_repository(
119119
# CEL Spec deps
120120
go_repository(
121121
name = "com_google_cel_spec",
122-
commit = "910da5b5d08378a9a1f3ea3ba1979e16e6c6dbc1", # v 0.14.0
123-
importpath = "github.com/google/cel-spec",
122+
commit = "95c1c0162adaa53d6884cfa64845091239f20100",
123+
importpath = "github.com/l46kok/cel-spec",
124124
)
125125

126126
# strcase deps

repl/appengine/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require github.com/google/cel-go/repl v0.0.0-20230406155237-b081aea03865
77
require (
88
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
99
github.com/google/cel-go v0.18.1 // indirect
10-
github.com/google/cel-spec v0.14.0 // indirect
10+
github.com/google/cel-spec/tests v0.14.0 // indirect
1111
github.com/stoewer/go-strcase v1.3.0 // indirect
1212
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
1313
golang.org/x/text v0.13.0 // indirect
@@ -19,3 +19,5 @@ require (
1919
replace github.com/google/cel-go => ../../.
2020

2121
replace github.com/google/cel-go/repl => ../.
22+
23+
replace github.com/google/cel-spec/tests v0.14.0 => github.com/l46kok/cel-spec/tests v0.0.0-20240319231845-95c1c0162ada

repl/go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ require (
2020
)
2121

2222
replace github.com/google/cel-go => ../.
23+
24+
replace github.com/google/cel-spec/tests v0.14.0 => github.com/l46kok/cel-spec/tests v0.0.0-20240319231845-95c1c0162ada

server/go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
require (
66
github.com/google/cel-go v0.13.0
7-
github.com/google/cel-spec v0.14.0
7+
github.com/google/cel-spec/tests v0.14.0
88
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5
99
google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5
1010
google.golang.org/protobuf v1.33.0
@@ -23,3 +23,5 @@ require (
2323
)
2424

2525
replace github.com/google/cel-go => ./..
26+
27+
replace github.com/google/cel-spec/tests v0.14.0 => github.com/l46kok/cel-spec/tests v0.0.0-20240319231845-95c1c0162ada

0 commit comments

Comments
 (0)