Skip to content

Commit

Permalink
Fix Run error when selecting tests by checkbox(es) in v2.1dev20 #2724 (
Browse files Browse the repository at this point in the history
  • Loading branch information
HelioGuilherme66 authored Feb 27, 2024
1 parent 5f9f010 commit 9d29722
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Likewise, the current version of wxPython, is 4.2.1, but RIDE is known to work w

`pip install -U robotframework-ride`

(3.8 < python <= 3.12) Install current development version (**2.1dev17**) with:
(3.8 < python <= 3.12) Install current development version (**2.1dev21**) with:

`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`

Expand Down
2 changes: 1 addition & 1 deletion src/robotide/controller/filecontrollers.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

def _get_controller(project, data, parent, tasks=False):
if isinstance(data, TestCaseFile):
return TestCaseFileController(data, project, tasks=tasks)
return TestCaseFileController(data, project, parent, tasks=tasks)
if isinstance(data, ExcludedDirectory):
return ExcludedDirectoryController(data, project, parent)
if isinstance(data, ResourceFile):
Expand Down
2 changes: 1 addition & 1 deletion src/robotide/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# limitations under the License.
#
# Automatically generated by `tasks.py`.
VERSION = 'v2.1dev20'
VERSION = 'v2.1dev21'

0 comments on commit 9d29722

Please sign in to comment.