Skip to content

Commit 74a30cd

Browse files
authored
Merge pull request #906 from NVIDIA/anuragd/test_case_name_typo_fix
fix: Typo fix for test case name
2 parents 8dfda85 + 2a516b2 commit 74a30cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def run_trt_compatibility_tests(session, use_host_env=False):
180180
copy_model(session)
181181
session.chdir(os.path.join(TOP_DIR, 'tests/py'))
182182
tests = [
183-
"test_trt_intercompatability.py",
183+
"test_trt_intercompatibility.py",
184184
"test_ptq_trt_calibrator.py",
185185
]
186186
for test in tests:

tests/py/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ py_test(
7474
)
7575

7676
py_test(
77-
name = "test_trt_intercompatability",
77+
name = "test_trt_intercompatibility",
7878
srcs = [
7979
"model_test_case.py",
80-
"test_trt_intercompatability.py",
80+
"test_trt_intercompatibility.py",
8181
],
8282
deps = [
8383
requirement("torchvision"),

0 commit comments

Comments
 (0)