diff --git a/tests/integration/fileserver/gitfs_test.py b/tests/integration/fileserver/gitfs_test.py index 0b0d9abc1b..34c8b8b952 100644 --- a/tests/integration/fileserver/gitfs_test.py +++ b/tests/integration/fileserver/gitfs_test.py @@ -111,21 +111,6 @@ class GitFSTest(integration.ModuleCase): ret = gitfs.file_list(LOAD) self.assertIn('testfile', ret) - #@skipIf(True, 'Skipping tests temporarily') - def test_find_file(self): - with patch.dict(gitfs.__opts__, {'cachedir': self.master_opts['cachedir'], - 'gitfs_remotes': ['file://' + self.tmp_repo_dir], - 'sock_dir': self.master_opts['sock_dir']}): - - path = os.path.join(self.master_opts['cachedir'], - 'gitfs/refs', - LOAD['saltenv'], - 'testfile') - - ret = gitfs.find_file('testfile') - expected_ret = {'path': path, 'rel': 'testfile'} - self.assertDictEqual(ret, expected_ret) - #@skipIf(True, 'Skipping tests temporarily') def test_dir_list(self): with patch.dict(gitfs.__opts__, {'cachedir': self.master_opts['cachedir'],