Skip to content

Commit

Permalink
refs #6449 typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts authored and martyngigg committed Apr 10, 2013
1 parent f8afd54 commit 6a40ddd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ void setUp()

std::string FullPathFile;

TSM_ASSERT_THROWS("new file does not open in read mode",pSaver->openFile(this->testFileName,"r"), Kernel::Exception::FileError);
TSM_ASSERT_THROWS("new file does not open in read mode",pSaver->openFile(this->xxfFileName,"r"), Kernel::Exception::FileError);

TS_ASSERT_THROWS_NOTHING(pSaver->openFile(this->testFileName,"w"));
TS_ASSERT_THROWS_NOTHING(pSaver->openFile(this->xxfFileName,"w"));
TS_ASSERT_THROWS_NOTHING(FullPathFile = pSaver->getFileName());
TS_ASSERT(pSaver->isOpened());
TS_ASSERT_THROWS_NOTHING(pSaver->closeFile());
Expand Down Expand Up @@ -115,7 +115,7 @@ void setUp()
TS_ASSERT_THROWS_NOTHING(pSaver=new MDEvents::BoxControllerNxSIO(sc.get()));
std::string FullPathFile;

TS_ASSERT_THROWS_NOTHING(pSaver->openFile(this->testFileName,"w"));
TS_ASSERT_THROWS_NOTHING(pSaver->openFile(this->xxfFileName,"w"));
TS_ASSERT_THROWS_NOTHING(FullPathFile = pSaver->getFileName());

size_t nEvents=20;
Expand Down

0 comments on commit 6a40ddd

Please sign in to comment.