summaryrefslogtreecommitdiff
path: root/testing/tools/api_check.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tools/api_check.py')
-rwxr-xr-xtesting/tools/api_check.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/tools/api_check.py b/testing/tools/api_check.py
index c41701e0b8..e88af144c6 100755
--- a/testing/tools/api_check.py
+++ b/testing/tools/api_check.py
@@ -3,7 +3,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-"""Verifies exported functions in public/*.h are in fpdfview_c_api_test.c.
+"""Verifies exported functions in public/*.h are in fpdf_view_c_api_test.c.
This script gathers a list of functions from public/*.h that contain
FPDF_EXPORT. It then gathers a list of functions from
@@ -101,7 +101,7 @@ def main():
src_path = os.path.dirname(os.path.dirname(os.path.dirname(script_abspath)))
public_functions = _GetFunctionsFromPublicHeaders(src_path)
- api_test_relative_path = os.path.join('fpdfsdk', 'fpdfview_c_api_test.c')
+ api_test_relative_path = os.path.join('fpdfsdk', 'fpdf_view_c_api_test.c')
api_test_path = os.path.join(src_path, api_test_relative_path)
test_functions = _GetFunctionsFromTest(api_test_path)