File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
nextcloud/test/fixtures/webdav Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- G E T h t t p : / / l o c a l h o s t / i n d e x \. p h p
2
1
P R O P F I N D h t t p : / / l o c a l h o s t / r e m o t e \. p h p / w e b d a v
3
2
a u t h o r i z a t i o n : B e a r e r m o c k
4
3
c o n t e n t - t y p e : a p p l i c a t i o n / x m l
Original file line number Diff line number Diff line change @@ -15,8 +15,10 @@ BaseClient getProxyHttpClient({
15
15
final realClient = Client ();
16
16
return MockClient .streaming ((baseRequest, bytesStream) async {
17
17
final bodyBytes = await bytesStream.toBytes ();
18
- final fixture = _formatHttpRequest (baseRequest, bodyBytes);
19
- onRequest (fixture);
18
+ if (baseRequest.url.path != '/index.php' ) {
19
+ final fixture = _formatHttpRequest (baseRequest, bodyBytes);
20
+ onRequest (fixture);
21
+ }
20
22
21
23
final request = Request (baseRequest.method, baseRequest.url)
22
24
..persistentConnection = baseRequest.persistentConnection
You can’t perform that action at this time.
0 commit comments