Ignore:
Timestamp:
29 Dec 2014, 06:52:30 (10 years ago)
Author:
Henrik Bettermann
Message:

Adjust to changes made in base package.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/ikobacustom.skeleton/trunk/src/ikobacustom/skeleton/products/tests/test_browser.py

    r12269 r12335  
    5252        result = open(self.outfile, 'rb').read()
    5353        self.assertEqual(result,
    54             'contract_category,product_id,title,users_with_local_roles\r\n'
    55             'license,LIC,Unnamed,[]\r\n')
     54            'contract_category,options,product_id,title,users_with_local_roles\r\n'
     55            'license,[],LIC,Unnamed,[]\r\n')
    5656        # We can import the same file.
    5757        processor = SkeletonProductProcessor()
    5858        result = processor.doImport(
    5959            self.outfile,
    60             ['contract_category','product_id','title','users_with_local_roles'],
     60            ['contract_category','options,', 'product_id','title',
     61            'users_with_local_roles'],
    6162            mode='create')
    6263        num, num_fail, finished_path, failed_path = result
     
    6869        result = processor.doImport(
    6970            self.outfile,
    70             ['contract_category','product_id','title','users_with_local_roles'],
     71            ['contract_category','options','product_id','title',
     72            'users_with_local_roles'],
    7173            mode='create')
    7274        num, num_fail, finished_path, failed_path = result
     
    7678        result = processor.doImport(
    7779            self.outfile,
    78             ['contract_category','product_id','title','users_with_local_roles'],
     80            ['contract_category','options','product_id','title',
     81            'users_with_local_roles'],
    7982            mode='update')
    8083        num, num_fail, finished_path, failed_path = result
Note: See TracChangeset for help on using the changeset viewer.