Bump deps for ntlm-auth and PSScriptAnalyzer (#55269)

This commit is contained in:
Jordan Borean
2019-04-16 06:43:41 +10:00
committed by GitHub
parent 65dcb4242a
commit 04cae4134f
7 changed files with 63 additions and 13 deletions

View File

@@ -101,13 +101,15 @@ class PslintTest(SanitySingleVersion):
'Information',
'Warning',
'Error',
'ParseError',
]
cwd = os.getcwd() + '/'
# replace unicode smart quotes with ascii versions
# replace unicode smart quotes and ellipsis with ascii versions
stdout = re.sub(u'[\u2018\u2019]', "'", stdout)
stdout = re.sub(u'[\u201c\u201d]', '"', stdout)
stdout = re.sub(u'[\u2026]', '...', stdout)
messages = json.loads(stdout)