mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-08 22:43:14 +00:00
fix: [NETWORK] regex from network call (#430)
Co-authored-by: Florent Champigny <florent@bere.al>
This commit is contained in:
parent
397b8e0a77
commit
6bcfbf8e09
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class GenerateNetworkMockFromNetworkCallUseCase(
|
|||
MockNetworkDomainModel(
|
||||
id = Uuid.random().toString(), // generate
|
||||
expectation = MockNetworkDomainModel.Expectation(
|
||||
urlPattern = request.request.url,
|
||||
urlPattern = Regex.escape(request.request.url),
|
||||
method = request.request.method,
|
||||
),
|
||||
isEnabled = true, // enabled by default
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue