|
35 | 35 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
36 | 36 | # either express or implied. See the License for the specific
|
37 | 37 | # language governing permissions and limitations under the License.
|
| 38 | +# |
| 39 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 40 | +# you may not use this file except in compliance with the License. |
| 41 | +# You may obtain a copy of the License at |
| 42 | +# |
| 43 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 44 | +# |
| 45 | +# Unless required by applicable law or agreed to in writing, |
| 46 | +# software distributed under the License is distributed on an |
| 47 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, |
| 48 | +# either express or implied. See the License for the specific |
| 49 | +# language governing permissions and limitations under the License. |
38 | 50 |
|
39 | 51 | import json
|
40 | 52 | import os
|
@@ -62,7 +74,8 @@ def runTest(self):
|
62 | 74 | def test_retrieve_applications(self):
|
63 | 75 | client_response = self.client.retrieve_applications()
|
64 | 76 | self.assertEqual(client_response.status, 200)
|
65 |
| - self.assertEqual(len(client_response.success_response['applications']), 2) |
| 77 | + # tnent manager is 1 application, admin is another, Pied piper in the kickstart is the 3rd. |
| 78 | + self.assertEqual(len(client_response.success_response['applications']), 3) |
66 | 79 |
|
67 | 80 | def test_create_user_retrieve_user(self):
|
68 | 81 | # Check if the user already exists.
|
|
0 commit comments