Skip to content

Commit 8a17372

Browse files
Update pyrefly/lib/test/lsp/lsp_interaction/completion.rs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 3c9e499 commit 8a17372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrefly/lib/test/lsp/lsp_interaction/completion.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ fn test_completion_class_override_members() {
380380
interaction.client.did_open("foo.py");
381381
interaction.client.did_change(
382382
"foo.py",
383-
"from typing import *\nfrom abc import ABC, abstractmethod\n\nclass A(ABC):\n @property\n @abstractmethod\n def error_message(self):\n \"\"\"\n Child classes must provide a error message string.\n \"\"\"\n ...\n\nclass B(A):\n erro = \"\"\n",
383+
"from typing import *\nfrom abc import ABC, abstractmethod\n\nclass A(ABC):\n @property\n @abstractmethod\n def error_message(self):\n \"\"\"\n Child classes must provide an error message string.\n \"\"\"\n ...\n\nclass B(A):\n erro = \"\"\n",
384384
);
385385

386386
interaction

0 commit comments

Comments
 (0)