Skip to content

Commit

Permalink
Fix unit tests broken with f935d27.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Sep 25, 2015
1 parent f935d27 commit 86c4263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/jobs/test_job_configuration.py
Expand Up @@ -119,7 +119,7 @@ def test_env_parsing( self ):
env_dest = self.job_config.destinations[ "java_cluster" ][ 0 ]
assert len( env_dest.env ) == 4, len( env_dest.env )
assert env_dest.env[ 0 ][ "name" ] == "_JAVA_OPTIONS"
assert env_dest.env[ 0 ][ "value" ] == '-Xmx=6GB'
assert env_dest.env[ 0 ][ "value" ] == '-Xmx6G'

assert env_dest.env[ 1 ][ "name" ] == "ANOTHER_OPTION"
assert env_dest.env[ 1 ][ "raw" ] is True
Expand Down

0 comments on commit 86c4263

Please sign in to comment.