Skip to content

Commit

Permalink
Minor code review things from the coderabbitai review
Browse files Browse the repository at this point in the history
  • Loading branch information
alirana01 committed Nov 2, 2023
1 parent dbb9ea6 commit 692bc3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ TemplateListSelectionPage_Template_Wizard_Desc=Select one of the available templ
NewProjectWizardPage_Header=New Project
NewProjectWizardPage_DescriptionString=Select one of the available templates to generate a fully-functioning IDF project or create your own
TemplateSelectionToolTip=To choose a template, select the "Create a project using one of the templates" checkbox
NewProjectWizardPage_NoTemplateFoundMessage=No Templates were found on the system you can continue to create a blank project
NewProjectWizardPage_NoTemplateFoundMessage=No Templates were found on the system. You can continue to create a blank project.
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ public static void setupProjectFromTemplate(String projectName, String category,
bot.shell().activate().bot().menu("File").menu("New").menu("Project...").click();
SWTBotShell shell = bot.shell("New Project");
shell.activate();

bot.tree().expandNode(category).select(subCategory);
bot.button("Finish").click();
bot.button("Finish").click(); // Finish for the project wizard from eclipse

bot.textWithLabel("Project name:").setText(projectName);
bot.checkBox("Create a project using one of the templates").click();
SWTBotTreeItem templateItem = SWTBotTreeOperations.getTreeItem(bot.tree(), templatePath);
Expand Down

0 comments on commit 692bc3f

Please sign in to comment.