File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -514,7 +514,8 @@ def test_get_job_deps(self):
514514
515515 def test_get_submit_args_job_queue (self ):
516516 with tempfile .NamedTemporaryFile () as tfile :
517- tfile .write (b"""<?xml version="1.0"?>
517+ tfile .write (
518+ b"""<?xml version="1.0"?>
518519<file id="env_batch.xml" version="2.0">
519520 <header>
520521 These variables may be changed anytime during a run, they
@@ -547,7 +548,8 @@ def test_get_submit_args_job_queue(self):
547548 </queues>
548549 </batch_system>
549550</file>
550- """ )
551+ """
552+ )
551553
552554 tfile .seek (0 )
553555
@@ -569,7 +571,8 @@ def test_get_submit_args_job_queue(self):
569571 @mock .patch .dict (os .environ , {"TEST" : "GOOD" })
570572 def test_get_submit_args (self ):
571573 with tempfile .NamedTemporaryFile () as tfile :
572- tfile .write (b"""<?xml version="1.0"?>
574+ tfile .write (
575+ b"""<?xml version="1.0"?>
573576<file id="env_batch.xml" version="2.0">
574577 <header>
575578 These variables may be changed anytime during a run, they
@@ -626,7 +629,8 @@ def test_get_submit_args(self):
626629 </queues>
627630 </batch_system>
628631</file>
629- """ )
632+ """
633+ )
630634
631635 tfile .seek (0 )
632636
You can’t perform that action at this time.
0 commit comments