@@ -40,7 +40,7 @@ tla_module = rule(
40
40
Declares a single TLA+ module.
41
41
42
42
```python
43
- load("//tlaplus:defs.bzl", "tla_module")
43
+ load("//bazel/ tlaplus:defs.bzl", "tla_module")
44
44
45
45
tla_module(
46
46
name = "spec",
@@ -81,14 +81,14 @@ tlc_test = rule(
81
81
attrs = {
82
82
"spec" : attr .label (providers = [TlaModuleInfo ]),
83
83
"config" : attr .label (allow_single_file = [".cfg" ]),
84
- "_tlc" : attr .label (default = "//tlaplus:tlc" , executable = True , cfg = "exec" ),
84
+ "_tlc" : attr .label (default = "//bazel/ tlaplus:tlc" , executable = True , cfg = "exec" ),
85
85
},
86
86
test = True ,
87
87
doc = """\
88
88
Defines a test that runs TLC on a specification.
89
89
90
90
```python
91
- load("//tlaplus:defs.bzl", "tla_module", "tlc_test")
91
+ load("//bazel/ tlaplus:defs.bzl", "tla_module", "tlc_test")
92
92
93
93
tla_module(
94
94
name = "spec",
@@ -133,7 +133,7 @@ sany_test = rule(
133
133
attrs = {
134
134
"module" : attr .label (providers = [TlaModuleInfo ]),
135
135
"_sany" : attr .label (
136
- default = Label ("//tlaplus:sany" ),
136
+ default = Label ("//bazel/ tlaplus:sany" ),
137
137
executable = True ,
138
138
cfg = "exec" ,
139
139
),
0 commit comments