File tree Expand file tree Collapse file tree
src/actions/global/globalactions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public void test() {
4141 FileSaveAsGlobalAction fileSaveAssociatedAction
4242 = (FileSaveAsGlobalAction ) ActionName .FILE_SAVE_AS_GLOBAL_ACTION
4343 .getAssiciatedAction ();
44- fileSaveAssociatedAction .setFilePath ("temp .xml" );
44+ fileSaveAssociatedAction .setFilePath ("JSPFileSaveOpenTest .xml" );
4545 fileSaveAssociatedAction .execute (panel );
4646
4747
@@ -56,15 +56,15 @@ public void test() {
5656 FileOpenGlobalAction fileOpenAssociatedAction
5757 = (FileOpenGlobalAction ) ActionName .FILE_OPEN_GLOBAL_ACTION
5858 .getAssiciatedAction ();
59- fileOpenAssociatedAction .setFileToOpen ("temp .xml" );
59+ fileOpenAssociatedAction .setFileToOpen ("JSPFileSaveOpenTest .xml" );
6060 fileOpenAssociatedAction .execute (panel );
6161
6262 //Components on the panel should be the same as what was saved to be
6363 assertEquals (1 , panel .getPaintComponents ().size ());
6464 assertTrue (panel .getPaintComponents ().get (0 )
6565 instanceof ClassPaintComponent );
6666
67- File xml = new File ("temp .xml" );
67+ File xml = new File ("JSPFileSaveOpenTest .xml" );
6868
6969 xml .delete ();
7070
You can’t perform that action at this time.
0 commit comments