Remove shebangs from test files

They should be executed with a runner like nose, not directly.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2019-10-04 15:20:01 +02:00
parent 26962d94ca
commit 43fb06e00f
33 changed files with 0 additions and 175 deletions

View file

@ -1,13 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import mock
import errno
try:
import unittest2 as unittest
except ImportError:
import unittest
import os
import stat
import sys
@ -342,7 +337,3 @@ class TestLinkerLink(TestLinkerBase):
self.assertTrue(self.same_inode(self.file1, self.hardlink1))
self.linker.link(self.src_dir, self.dst_dir, link_type="copy")
self.assertTrue(self.same_inode(self.dst_file1, self.dst_hardlink1))
if __name__ == "__main__":
unittest.main()