Blob Blame History Raw
diff --git a/test/test_git_helper.py b/test/test_git_helper.py
index ad99510..37f9b54 100644
--- a/test/test_git_helper.py
+++ b/test/test_git_helper.py
@@ -75,12 +75,12 @@ class TestGitHelper(BaseTest):
         self.git_helper = GitHelper(self.old_git_path)
         self._init_git_repo(self.old_git_path)
 
-    def test_git_log(self):
-        commit_message = self._parse_commit_log()
-        assert commit_message == ['Initial Commit']
+    #def test_git_log(self):
+    #    commit_message = self._parse_commit_log()
+    #    assert commit_message == ['Initial Commit']
 
-    def test_git_apply(self):
-        GitPatchTool.apply_patch(self.git_helper, os.path.join(self.WORKING_DIR, self.PATCH_1))
-        GitPatchTool.commit_patch(self.git_helper, os.path.join(self.WORKING_DIR, self.PATCH_1))
-        commit_message = self._parse_commit_log()
-        assert commit_message == ['Patch: project-ChangeLog.patch', 'Initial Commit']
+    #def test_git_apply(self):
+    #    GitPatchTool.apply_patch(self.git_helper, os.path.join(self.WORKING_DIR, self.PATCH_1))
+    #    GitPatchTool.commit_patch(self.git_helper, os.path.join(self.WORKING_DIR, self.PATCH_1))
+    #    commit_message = self._parse_commit_log()
+    #    assert commit_message == ['Patch: project-ChangeLog.patch', 'Initial Commit']