Skip to content

Commit d36deb4

Browse files
committed
fix: some regression tests
1 parent e45d716 commit d36deb4

File tree

1,057 files changed

+1961
-2015
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,057 files changed

+1961
-2015
lines changed

packages/core/src/robotcode/core/dataclasses.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def _decode_case(cls, s: str) -> str:
105105
return s
106106

107107

108-
__field_name_cache: Dict[Tuple[Type[Any], dataclasses.Field[Any]], str] = {}
108+
__field_name_cache: Dict[Tuple[Type[Any], dataclasses.Field], str] = {} # type: ignore
109109
__NOT_SET = object()
110110

111111

@@ -373,7 +373,7 @@ def _handle_basic_types(value: Any, _remove_defaults: bool, _encode: bool) -> An
373373
return value
374374

375375

376-
__dataclasses_cache: Dict[Type[Any], Tuple[dataclasses.Field[Any], ...]] = {}
376+
__dataclasses_cache: Dict[Type[Any], Tuple[dataclasses.Field, ...]] = {} # type: ignore
377377

378378

379379
def _handle_dataclass(value: Any, remove_defaults: bool, encode: bool) -> Dict[str, Any]:

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ result:
1414
disabled: null
1515
edit: null
1616
is_preferred: null
17-
kind: !CodeActionKind 'SOURCE'
17+
kind: source
1818
title: Open Documentation

0 commit comments

Comments
 (0)