Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/rqt_launchtree/launchtree_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def _get_launch_files(self, path):
def _is_launch_file(self, path):
if not os.path.isfile(path): return False
(root, ext) = os.path.splitext(path)
if ext != '.launch': return False
if ext not in ('.launch', '.test'): return False
return True

def launch_entry_changed(self, current, previous):
Expand Down