aboutsummaryrefslogtreecommitdiff
path: root/factory/src/test
diff options
context:
space:
mode:
authorChristian Edward Gruber <cgruber@google.com>2014-09-05 23:50:00 -0700
committerChristian Edward Gruber <cgruber@google.com>2014-09-06 02:07:43 -0700
commitbc62180ae0fa05ecfb62905f2ed98ee812a8bb55 (patch)
tree58ffaab67eaac1296162786550aae9e69de77266 /factory/src/test
parentcd16cc814d93c82b6340a4f401d5f67dcd127834 (diff)
downloadauto-bc62180ae0fa05ecfb62905f2ed98ee812a8bb55.tar.gz
Update Truth package name to the new location.
Tested: TAP --sample for global presubmit queue [] ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=72339462
Diffstat (limited to 'factory/src/test')
-rw-r--r--factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java2
-rw-r--r--factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java8
2 files changed, 5 insertions, 5 deletions
diff --git a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java
index 9e5ee94a..3da29d7c 100644
--- a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java
+++ b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java
@@ -16,7 +16,7 @@
package com.google.auto.factory.processor;
import static com.google.auto.factory.processor.AutoFactoryDeclaration.Factory.isValidIdentifier;
-import static org.truth0.Truth.ASSERT;
+import static com.google.common.truth.Truth.ASSERT;
import org.junit.Test;
import org.junit.runner.RunWith;
diff --git a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java
index 631bb9eb..f8a482a8 100644
--- a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java
+++ b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java
@@ -15,18 +15,18 @@
*/
package com.google.auto.factory.processor;
+import static com.google.common.truth.Truth.ASSERT;
import static com.google.testing.compile.JavaSourceSubjectFactory.javaSource;
import static com.google.testing.compile.JavaSourcesSubjectFactory.javaSources;
-import static org.truth0.Truth.ASSERT;
-import javax.tools.JavaFileObject;
+import com.google.common.collect.ImmutableSet;
+import com.google.testing.compile.JavaFileObjects;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
-import com.google.common.collect.ImmutableSet;
-import com.google.testing.compile.JavaFileObjects;
+import javax.tools.JavaFileObject;
/**
* Functional tests for the {@link AutoFactoryProcessor}.