Skip to content

Commit 07da8b3

Browse files
authored
[Test] fix regex for including files in test/Utilities/mockoptimizer.jl (#2657)
1 parent 7bdde22 commit 07da8b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Utilities/mockoptimizer.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,9 @@ function test_modify_not_allowed()
250250
model,
251251
config,
252252
include = [
253-
r"$test_linear_integration^",
254-
r"$test_linear_integration_modification^",
255-
r"$test_linear_VectorAffineFunction^",
253+
r"^test_linear_integration$",
254+
r"^test_linear_integration_modification$",
255+
r"^test_linear_VectorAffineFunction$",
256256
],
257257
)
258258
return

0 commit comments

Comments
 (0)