aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/repo_manager_test.py
diff options
context:
space:
mode:
authorGravatar Leo Neat <leosneat@gmail.com>2020-02-21 08:47:13 -0800
committerGravatar GitHub <noreply@github.com>2020-02-21 08:47:13 -0800
commit1522a7428c682f9dd1dfa4af26a6402c29f1f958 (patch)
tree0e39141eba1ba7465d44649eae9ad6c759559c3b /infra/repo_manager_test.py
parentdd5ad3b20e9abd7e7be69e7c313d8686d2c4d20f (diff)
[Infra] Add tests to presubmit (#3405)
Adds unit/integration tests to travis presubmit.
Diffstat (limited to 'infra/repo_manager_test.py')
-rw-r--r--infra/repo_manager_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/repo_manager_test.py b/infra/repo_manager_test.py
index 199df018..b5a914d3 100644
--- a/infra/repo_manager_test.py
+++ b/infra/repo_manager_test.py
@@ -116,9 +116,9 @@ class RepoManagerCheckoutPullRequestUnitTests(unittest.TestCase):
"""Tests that the git checkout pull request works."""
with tempfile.TemporaryDirectory() as tmp_dir:
test_repo_manager = repo_manager.RepoManager(OSS_FUZZ_REPO, tmp_dir)
- test_repo_manager.checkout_pr('refs/pull/1757/merge')
+ test_repo_manager.checkout_pr('refs/pull/3415/merge')
self.assertEqual(test_repo_manager.get_current_commit(),
- '2a2b11cc3d370db8f7bdf73046f3290a39615347')
+ '314c9249a54a08e764a5bbcb7333294ae7c1f9ed')
def test_checkout_invalid_pull_request(self):
"""Tests that the git checkout invalid pull request fails."""