Skip to content

Commit

Permalink
cleanup some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leifj committed Jan 23, 2019
1 parent 9a1d78e commit bb7529c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pyff/test/test_pipeline.py
Expand Up @@ -522,7 +522,7 @@ def test_first_select_as(self):
self.exec_pipeline("""
- load:
- file://%s/metadata/test01.xml
- select as FOO
- select as FOO:
- first
- publish: %s
""" % (self.datadir, tmpfile))
Expand All @@ -536,11 +536,11 @@ def test_first_select_as(self):
except PipeException:
pass
except IOError:
raise Skip
pass
finally:
try:
os.unlink(tmpfile)
except:
except (IOError, OSError):
pass

def test_prune(self):
Expand Down

0 comments on commit bb7529c

Please sign in to comment.