Skip to content

Commit

Permalink
address
Browse files Browse the repository at this point in the history
--------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00) errors
  • Loading branch information
tkrabel-db committed Aug 15, 2023
1 parent 208b472 commit 2e73160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def test_workspace_loads_pycodestyle_config(pylsp, tmpdir):
# Test that project settings are loaded
workspace2_dir = tmpdir.mkdir("NewTest456")
cfg = workspace2_dir.join("pycodestyle.cfg")
cfg.write("[pycodestyle]\n" "max-line-length = 1000")
cfg.write("[pycodestyle]\n" "max-line-length = 1000") # pylint: disable=implicit-str-concat

workspace1 = {"uri": str(workspace1_dir)}
workspace2 = {"uri": str(workspace2_dir)}
Expand All @@ -256,7 +256,7 @@ def test_workspace_loads_pycodestyle_config(pylsp, tmpdir):
# Test switching to another workspace with different settings
workspace3_dir = tmpdir.mkdir("NewTest789")
cfg1 = workspace3_dir.join("pycodestyle.cfg")
cfg1.write("[pycodestyle]\n" "max-line-length = 20")
cfg1.write("[pycodestyle]\n" "max-line-length = 20") # pylint: disable=implicit-str-concat

workspace3 = {"uri": str(workspace3_dir)}

Expand Down

0 comments on commit 2e73160

Please sign in to comment.