You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XPack security usernames now must start with an alpha character or _ added a way for crud tests to sanitize the call distinct string value they get passed
Copy file name to clipboardExpand all lines: src/Tests/Framework/EndpointTests/CrudTestBase.cs
+26-15Lines changed: 26 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -39,14 +39,14 @@ public abstract class CrudTestBase<TCluster, TCreateResponse, TReadResponse, TUp
39
39
whereTUpdateResponse:class,IResponse
40
40
whereTDeleteResponse:class,IResponse
41
41
{
42
-
privateLazyResponses_createResponse;
43
-
privateLazyResponses_createGetResponse;
44
-
privateLazyResponses_updateResponse;
45
-
privateLazyResponses_updateGetResponse;
46
-
privateLazyResponses_deleteResponse;
47
-
privateLazyResponses_deleteGetResponse;
42
+
privatereadonlyLazyResponses_createResponse;
43
+
privatereadonlyLazyResponses_createGetResponse;
44
+
privatereadonlyLazyResponses_updateResponse;
45
+
privatereadonlyLazyResponses_updateGetResponse;
46
+
privatereadonlyLazyResponses_deleteResponse;
47
+
privatereadonlyLazyResponses_deleteGetResponse;
48
48
49
-
readonlyClusterBase_cluster;
49
+
privatereadonlyClusterBase_cluster;
50
50
51
51
[SuppressMessage("Potential Code Quality Issues","RECS0021:Warns about calls to virtual member functions occuring in the constructor",Justification="Expected behaviour")]
0 commit comments