[hibernate-commits] Hibernate SVN: r18996 - search/trunk/src/test/java/org/hibernate/search/test/query/explain.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Sat Mar 13 11:08:26 EST 2010


Author: sannegrinovero
Date: 2010-03-13 11:08:20 -0500 (Sat, 13 Mar 2010)
New Revision: 18996

Modified:
   search/trunk/src/test/java/org/hibernate/search/test/query/explain/ExplanationTest.java
Log:
some typos

Modified: search/trunk/src/test/java/org/hibernate/search/test/query/explain/ExplanationTest.java
===================================================================
--- search/trunk/src/test/java/org/hibernate/search/test/query/explain/ExplanationTest.java	2010-03-13 14:56:13 UTC (rev 18995)
+++ search/trunk/src/test/java/org/hibernate/search/test/query/explain/ExplanationTest.java	2010-03-13 16:08:20 UTC (rev 18996)
@@ -43,9 +43,9 @@
 	public void testExplanation() throws Exception {
 		FullTextSession s = Search.getFullTextSession( openSession() );
 		Transaction tx = s.beginTransaction();
-		Dvd dvd = new Dvd("The dark knight", "Batman returns with it best enomy the Jocker. The dark side of this movies shows up pretty quickly");
+		Dvd dvd = new Dvd("The dark knight", "Batman returns with his best enemy the Joker. The dark side of this movies shows up pretty quickly");
 		s.persist( dvd );
-		dvd = new Dvd("Wall-e", "The tiny little robot comes to Eartch after the dark times and tries to clean it");
+		dvd = new Dvd("Wall-e", "The tiny little robot comes to Earth after the dark times and tries to clean it");
 		s.persist( dvd );
 		tx.commit();
 		s.clear();



More information about the hibernate-commits mailing list