Changeset 42:a67c2fe2b2aa in pyenvjasmine for pyenvjasmine/tests


Ignore:
Timestamp:
Apr 3, 2018, 1:57:36 PM (6 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

Fixed typo (enviroment/environment)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pyenvjasmine/tests/test_runner.py

    r39 r42  
    1414        Test the runner, using default values (which wil run the demo specs)
    1515        """
    16         jstests = Runner(testing_enviroment='rhino')
     16        jstests = Runner(testing_environment='rhino')
    1717        success, stdout = jstests.run()
    1818        assert success
     
    2929        envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
    3030        jstests = Runner(
    31             testing_enviroment='rhino',
     31            testing_environment='rhino',
    3232            rootdir=envjasmine_dir,
    3333            testdir=sample,
     
    5151        envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
    5252        jstests = Runner(
    53             testing_enviroment='rhino',
     53            testing_environment='rhino',
    5454            rootdir=envjasmine_dir,
    5555            testdir=sample,
     
    7373        envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
    7474        jstests = Runner(
    75             testing_enviroment='rhino',
     75            testing_environment='rhino',
    7676            rootdir=envjasmine_dir,
    7777            testdir=sample,
     
    103103        # but we want to test also the case when a test failed
    104104        # and it does not appear in the "Failed:" report
    105         jstests = Runner(testing_enviroment='rhino')
     105        jstests = Runner(testing_environment='rhino')
    106106        success = jstests.did_test_pass('')
    107107        assert not success
     
    144144        envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
    145145        jstests = Runner(
    146             testing_enviroment='phantomjs',
     146            testing_environment='phantomjs',
    147147            rootdir=envjasmine_dir,
    148148            testdir=sample,
     
    169169        envjasmine_dir = os.path.join(os.path.dirname(here), 'envjasmine')
    170170        jstests = Runner(
    171             testing_enviroment='phantomjs',
     171            testing_environment='phantomjs',
    172172            rootdir=envjasmine_dir,
    173173            testdir=sample,
     
    187187
    188188        jstests = Runner(
    189             testing_enviroment='phantomjs',
     189            testing_environment='phantomjs',
    190190            browser_configfile=browser_conf_file
    191191        )
Note: See TracChangeset for help on using the changeset viewer.