You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2012/02/06 21:00:44 UTC

svn commit: r1241137 - in /commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2: AssertionsTest.java internal/ internal/AssertionsTest.java

Author: simonetripodi
Date: Mon Feb  6 20:00:44 2012
New Revision: 1241137

URL: http://svn.apache.org/viewvc?rev=1241137&view=rev
Log:
forgot to update the Assertions test relocation

Added:
    commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/internal/
    commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/internal/AssertionsTest.java
      - copied, changed from r1237747, commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/AssertionsTest.java
Removed:
    commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/AssertionsTest.java

Copied: commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/internal/AssertionsTest.java (from r1237747, commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/AssertionsTest.java)
URL: http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/internal/AssertionsTest.java?p2=commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/internal/AssertionsTest.java&p1=commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/AssertionsTest.java&r1=1237747&r2=1241137&rev=1241137&view=diff
==============================================================================
--- commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/AssertionsTest.java (original)
+++ commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/internal/AssertionsTest.java Mon Feb  6 20:00:44 2012
@@ -1,4 +1,4 @@
-package org.apache.commons.beanutils2;
+package org.apache.commons.beanutils2.internal;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -20,10 +20,10 @@ package org.apache.commons.beanutils2;
  */
 
 import static java.util.Arrays.fill;
-import static org.apache.commons.beanutils2.Assertions.checkArgument;
-import static org.apache.commons.beanutils2.Assertions.checkNoneIsNull;
-import static org.apache.commons.beanutils2.Assertions.checkNotNull;
-import static org.apache.commons.beanutils2.Assertions.checkState;
+import static org.apache.commons.beanutils2.internal.Assertions.checkArgument;
+import static org.apache.commons.beanutils2.internal.Assertions.checkNoneIsNull;
+import static org.apache.commons.beanutils2.internal.Assertions.checkNotNull;
+import static org.apache.commons.beanutils2.internal.Assertions.checkState;
 import static org.junit.Assert.assertSame;
 
 import org.junit.Rule;