aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/cifuzz/config_utils_test.py
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-01-28 14:49:03 -0800
committerGravatar GitHub <noreply@github.com>2021-01-29 09:49:03 +1100
commitf2756d73216cc28ae3cc9c5cbfa4b82204095151 (patch)
tree08ab0431c36c07183e70471f3fd67492386bbacf /infra/cifuzz/config_utils_test.py
parentd7e85a20b0821eeaf754d9184698f31ed4898e00 (diff)
[CIFuzz] Move run_fuzzers to new config system (#5063)
Also, decide is_github based on something not used/faked by Skia.
Diffstat (limited to 'infra/cifuzz/config_utils_test.py')
-rw-r--r--infra/cifuzz/config_utils_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/infra/cifuzz/config_utils_test.py b/infra/cifuzz/config_utils_test.py
index c97ebd15..12daf7ee 100644
--- a/infra/cifuzz/config_utils_test.py
+++ b/infra/cifuzz/config_utils_test.py
@@ -26,14 +26,14 @@ import test_helpers
# pylint: disable=no-self-use
-class ConfigTest(unittest.TestCase):
- """Tests for Config."""
+class BuildFuzzersConfigTest(unittest.TestCase):
+ """Tests for BuildFuzzersConfig."""
def setUp(self):
test_helpers.patch_environ(self)
def _create_config(self):
- return config_utils.Config()
+ return config_utils.BuildFuzzersConfig()
def test_base_ref(self):
"""Tests that base_ref is set properly."""