Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-08-19 18:37:49 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-08-19 18:45:37 +0300
commit214e4aac976962b7da5ebcbbab119acc60b1a654 (patch)
tree6ac53e9fc84427362315c947f73538f6edea358c /tests
parent479cc9a83eeb67cf0076384b378b50ec86cd8d5c (diff)
Fix Python error in ./benchmark init after recent changes
Diffstat (limited to 'tests')
-rw-r--r--tests/performance/api/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance/api/environment.py b/tests/performance/api/environment.py
index 70fc15f251c..76c731b6118 100644
--- a/tests/performance/api/environment.py
+++ b/tests/performance/api/environment.py
@@ -47,7 +47,7 @@ class TestEnvironment:
print(f'Init {self.base_dir}')
self.base_dir.mkdir(parents=True, exist_ok=True)
- if len(self.get_configs_names()) == 0:
+ if len(self.get_config_names()) == 0:
config_dir = self.base_dir / 'default'
print(f'Creating default configuration in {config_dir}')
TestConfig.write_default_config(self, config_dir)