From 7ca3f1bd374a060ef0aaf7373f47ef1c2516e9dc Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 22 Jun 2020 14:57:47 -0400 Subject: Fix generator for realpath issue --- suite/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite/generator.py b/suite/generator.py index 3d15a813..ce7efada 100755 --- a/suite/generator.py +++ b/suite/generator.py @@ -25,7 +25,7 @@ import zipfile import difflib from collections import Counter -api_suite_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), {4}) +api_suite_path = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), {4})) sys.path.append(api_suite_path) import testcommon import api_test -- cgit v1.3.1