We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f544c54 commit ee71afbCopy full SHA for ee71afb
1 file changed
src/Tests/Search/GetPnPSearchCrawlLogTests.cs
@@ -77,14 +77,17 @@ public void GetPnPSearchCrawlLogTest()
77
// From Cmdlet Help: Show raw crawl log data
78
var rawFormat = "";
79
80
+ var increaseRequestTimeout= "";
81
+
82
var results = scope.ExecuteCommand("Get-PnPSearchCrawlLog",
83
new CommandParameter("LogLevel", logLevel),
84
new CommandParameter("RowLimit", rowLimit),
85
new CommandParameter("Filter", filter),
86
new CommandParameter("ContentSource", contentSource),
87
new CommandParameter("StartDate", startDate),
88
new CommandParameter("EndDate", endDate),
- new CommandParameter("RawFormat", rawFormat));
89
+ new CommandParameter("RawFormat", rawFormat),
90
+ new CommandParameter("IncreaseRequestTimeout", increaseRequestTimeout));
91
92
Assert.IsNotNull(results);
93
}
0 commit comments