From 5fb9c6a5b35220e27b3acd5861318584588cd0d8 Mon Sep 17 00:00:00 2001 From: LaMont Jones Date: Tue, 8 Nov 2022 00:54:56 +0000 Subject: v2.29.7: Revert back to v2.29.5 This change reverts stable to v2.29.5, to fix clients that received v2.29.6, and keep future updates simpler. Change-Id: I2f5c52c466b7321665c9699ccdbf98f928483fee --- tests/test_git_config.py | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'tests/test_git_config.py') diff --git a/tests/test_git_config.py b/tests/test_git_config.py index 0df38430..a4fad9ef 100644 --- a/tests/test_git_config.py +++ b/tests/test_git_config.py @@ -19,7 +19,6 @@ import tempfile import unittest import git_config -import repo_trace def fixture(*paths): @@ -34,16 +33,9 @@ class GitConfigReadOnlyTests(unittest.TestCase): def setUp(self): """Create a GitConfig object using the test.gitconfig fixture. """ - - self.tempdirobj = tempfile.TemporaryDirectory(prefix='repo_tests') - repo_trace._TRACE_FILE = os.path.join(self.tempdirobj.name, 'TRACE_FILE_from_test') - config_fixture = fixture('test.gitconfig') self.config = git_config.GitConfig(config_fixture) - def tearDown(self): - self.tempdirobj.cleanup() - def test_GetString_with_empty_config_values(self): """ Test config entries with no value. @@ -117,15 +109,9 @@ class GitConfigReadWriteTests(unittest.TestCase): """Read/write tests of the GitConfig class.""" def setUp(self): - self.tempdirobj = tempfile.TemporaryDirectory(prefix='repo_tests') - repo_trace._TRACE_FILE = os.path.join(self.tempdirobj.name, 'TRACE_FILE_from_test') - self.tmpfile = tempfile.NamedTemporaryFile() self.config = self.get_config() - def tearDown(self): - self.tempdirobj.cleanup() - def get_config(self): """Get a new GitConfig instance.""" return git_config.GitConfig(self.tmpfile.name) -- cgit v1.2.3-54-g00ecf