Skip to content

Commit

Permalink
Fixing the incorrect Dialog Title Message in watch-testng results sec…
Browse files Browse the repository at this point in the history
…tion in prefercen
  • Loading branch information
Ahamed Saifudeen committed Apr 23, 2014
1 parent 86c0d14 commit aa3c65c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -110,7 +110,7 @@ public void widgetSelected(SelectionEvent evt) {
SelectionAdapter listener = new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
DirectoryDialog dlg= new DirectoryDialog(m_xmlTemplateFile.getShell());
dlg.setMessage("Select Template XML file");
dlg.setMessage("Select TestNG Output Directory");
String selectedDir = dlg.open();
if (new File(selectedDir).isDirectory()) {
selectedDir = selectedDir + File.separator + XMLReporter.FILE_NAME;
Expand Down

0 comments on commit aa3c65c

Please sign in to comment.