def test_getauthroizedpeople_with_since(self):
        params = GetAuthorizedPeopleParameters()
        params.authorizations_created_since = datetime.now(pytz.utc)
        method = GetAuthorizedPeople(params)
        method.execute(self.connection)

        response = method.response

        self.assertIsNotNone(response)
        self.assertEqual(len(response.authorized_people), 0)