Skip to content

Commit f134495

Browse files
committed
tenant manager test
1 parent d568c46 commit f134495

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/test/python/fusionauth/fusionauth_client_test.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@
3535
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
3636
# either express or implied. See the License for the specific
3737
# 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.
3850

3951
import json
4052
import os
@@ -62,7 +74,8 @@ def runTest(self):
6274
def test_retrieve_applications(self):
6375
client_response = self.client.retrieve_applications()
6476
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)
6679

6780
def test_create_user_retrieve_user(self):
6881
# Check if the user already exists.

0 commit comments

Comments
 (0)