Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
lawmicha committed Jun 29, 2022
1 parent e93e56a commit b5c6a94
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@

package com.amplifyframework.datastore;

import static androidx.test.core.app.ApplicationProvider.getApplicationContext;
import static com.amplifyframework.datastore.DataStoreHubEventFilters.publicationOf;
import static com.amplifyframework.datastore.DataStoreHubEventFilters.receiptOf;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import android.content.Context;
import androidx.annotation.RawRes;

import com.amplifyframework.AmplifyException;
import com.amplifyframework.api.ApiCategory;
import com.amplifyframework.api.aws.AWSApiPlugin;
Expand Down Expand Up @@ -49,10 +45,16 @@
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.Date;

import java.util.HashMap;
import java.util.concurrent.TimeUnit;

import static androidx.test.core.app.ApplicationProvider.getApplicationContext;
import static com.amplifyframework.datastore.DataStoreHubEventFilters.publicationOf;
import static com.amplifyframework.datastore.DataStoreHubEventFilters.receiptOf;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

public final class SchemaDriftTest {
private static final int TIMEOUT_SECONDS = 60;

Expand Down Expand Up @@ -120,8 +122,8 @@ public static void teardown() throws DataStoreException {
}

/**
* Perform DataStore.save
* Expected result: Model should be published to AppSync
* Perform DataStore.save.
* Expected result: Model should be published to AppSync.
* @throws AmplifyException Not expected.
*/
@Test
Expand Down

0 comments on commit b5c6a94

Please sign in to comment.