Skip to content

Commit

Permalink
[test/unit] Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Chu committed Jan 17, 2021
1 parent dec6fa0 commit ec01902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/process_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ def testProcess(self):

Banner('date')
p = self._ExtProc(['date'])
status = p.Run(self.waiter)
status = p.RunWait(self.waiter)
log('date returned %d', status)
self.assertEqual(0, status)

Banner('does-not-exist')
p = self._ExtProc(['does-not-exist'])
print(p.Run(self.waiter))
print(p.RunWait(self.waiter))

# 12 file descriptors open!
print('FDS AFTER', os.listdir('/dev/fd'))
Expand Down

0 comments on commit ec01902

Please sign in to comment.