Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
* replaced wrong unit framework imports -> junit vs testng
  • Loading branch information
sskorol committed Nov 26, 2015
1 parent dc44740 commit 7f6f1ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import com.tools.qaa.core.BaseTest;
import com.tools.qaa.pages.PageObjectsSupplier;
import org.junit.Assert;
import org.testng.Assert;
import org.testng.annotations.*;

/**
Expand All @@ -15,6 +15,6 @@ public void selectValidWeekDay() {
loadUrl("http://www.bootstrap4xpages.com/bs4xp/demos.nsf/Bootstrap_Select2Listbox.xsp")
.selectWeekDay("Monday");

Assert.assertEquals("Monday", homePage().getSelectedWeekDay());
Assert.assertEquals(homePage().getSelectedWeekDay(), "Monday");
}
}

0 comments on commit 7f6f1ba

Please sign in to comment.