From 2a516b2d3b315bc9559badf92bb02faac195b1d5 Mon Sep 17 00:00:00 2001 From: Anurag Dixit Date: Tue, 1 Mar 2022 19:58:48 -0800 Subject: [PATCH] fix: Typo fix for test case name Signed-off-by: Anurag Dixit --- noxfile.py | 2 +- tests/py/BUILD | 4 ++-- ...t_intercompatability.py => test_trt_intercompatibility.py} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/py/{test_trt_intercompatability.py => test_trt_intercompatibility.py} (100%) diff --git a/noxfile.py b/noxfile.py index f7e16a7107..aa7fdb718e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -180,7 +180,7 @@ def run_trt_compatibility_tests(session, use_host_env=False): copy_model(session) session.chdir(os.path.join(TOP_DIR, 'tests/py')) tests = [ - "test_trt_intercompatability.py", + "test_trt_intercompatibility.py", "test_ptq_trt_calibrator.py", ] for test in tests: diff --git a/tests/py/BUILD b/tests/py/BUILD index 59619639e7..209e9b929b 100644 --- a/tests/py/BUILD +++ b/tests/py/BUILD @@ -74,10 +74,10 @@ py_test( ) py_test( - name = "test_trt_intercompatability", + name = "test_trt_intercompatibility", srcs = [ "model_test_case.py", - "test_trt_intercompatability.py", + "test_trt_intercompatibility.py", ], deps = [ requirement("torchvision"), diff --git a/tests/py/test_trt_intercompatability.py b/tests/py/test_trt_intercompatibility.py similarity index 100% rename from tests/py/test_trt_intercompatability.py rename to tests/py/test_trt_intercompatibility.py