File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
main/java/com/contentstack/cms/app
test/java/com/contentstack/cms/app Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -319,9 +319,10 @@ public Call<ResponseBody> updateOauth(JSONObject body) {
319319 * The ID of the app for which OAuth details are required.
320320 * @return Call
321321 */
322- public Call <ResponseBody > hetHosting (@ NotNull String uid ) {
322+ public Call <ResponseBody > getHosting (@ NotNull String uid ) {
323323 validate ();
324- return service .getHosting (this .headers , appUid );
324+ this .appUid = uid ;
325+ return service .getHosting (this .headers , this .appUid );
325326 }
326327
327328}
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ void testUpdateOuthWithoutAppUid() {
152152
153153 @ Test
154154 void testGetHosting () {
155- Request request = app .hetHosting (organizationUid ).request ();
155+ Request request = app .getHosting (organizationUid ).request ();
156156 Assertions .assertEquals ("/v3/manifests/" +organizationUid +"/hosting" ,
157157 request .url ().encodedPath ());
158158 Assertions .assertEquals ("GET" ,
You can’t perform that action at this time.
0 commit comments