diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-09-23 02:03:09 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-09-23 02:08:28 +0200 |
commit | 1880496acc8383848692d4bb8dbfc96f87c93162 (patch) | |
tree | 2f72aa75a3736d860a16f4afc4f7cc6b68797df2 /testsuite | |
parent | e993543dfef903d06f9a350eb160dcb62f7dcb08 (diff) | |
download | ghdl-1880496acc8383848692d4bb8dbfc96f87c93162.tar.gz ghdl-1880496acc8383848692d4bb8dbfc96f87c93162.tar.bz2 ghdl-1880496acc8383848692d4bb8dbfc96f87c93162.zip |
testsuite/pyunit/lsp/LanguageServer: fix pasto
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/pyunit/lsp/LanguageServer.py | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/testsuite/pyunit/lsp/LanguageServer.py b/testsuite/pyunit/lsp/LanguageServer.py index 8bde14054..ad55439e1 100644 --- a/testsuite/pyunit/lsp/LanguageServer.py +++ b/testsuite/pyunit/lsp/LanguageServer.py @@ -150,11 +150,7 @@ class JSONTest(TestCase): self.assertIsNone(rep, "Too many replies.") if errs != 0: - print( - "FAILURE between output and {!s} (for {!s})".format( - responseFile, requestFile - ) - ) + print("FAILURE between output and {!s} (for {!s})".format(responseFile, requestFile)) print("Writing result output to result.json") with open("result.json", "w") as f: f.write(json_dumps(json_res, indent=2)) @@ -193,11 +189,7 @@ class Test003_Errors(JSONTest): self._RequestResponse("cmds.json", "replies.json") - -@mark.xfail( - platform == 'win32' and ('MINGW_PREFIX' not in environ), - reason="needs OpenSSL", -) +@mark.xfail(platform == "win32" and ("MINGW_PREFIX" not in environ), reason="FIXME") class Test004_Error_Project(JSONTest): subdir = Path("004errprj") |