Revision 53481544

b/aai/tests.py
41 41

  
42 42

  
43 43
class AaiTestCase(TestCase):
44
    fixtures = ['api_test_data', 'auth_test_data']
44
    fixtures = ['users', 'api_test_data', 'auth_test_data']
45 45
    apibase = '/api/v1.1'
46 46

  
47 47
    def setUp(self):
b/api/tests.py
54 54

  
55 55

  
56 56
class APITestCase(TestCase):
57
    fixtures = ['api_test_data', 'users.json']
57
    fixtures = ['users', 'api_test_data']
58 58
    test_server_id = 1001
59 59
    test_image_id = 1
60 60
    test_flavor_id = 1
......
417 417
    SERVERS = 1
418 418
    SERVER_METADATA = 0
419 419
    IMAGE_METADATA = 0
420
    fixtures = ['users.json']
420
    fixtures = ['users']
421 421

  
422 422
    def setUp(self):
423 423
        self.client = AaiClient()
......
819 819

  
820 820

  
821 821
class AaiTestCase(TestCase):
822
    fixtures = ['api_test_data', 'auth_test_data']
822
    fixtures = ['users', 'api_test_data', 'auth_test_data']
823 823
    apibase = '/api/v1.1'
824 824

  
825 825
    def setUp(self):
b/invitations/tests.py
37 37

  
38 38

  
39 39
class InvitationsTestCase(TestCase):
40

  
40
    fixtures = ['users']
41 41
    token = '46e427d657b20defe352804f0eb6f8a2'
42 42

  
43 43
    def setUp(self):

Also available in: Unified diff