Skip to content

Commit 755413b

Browse files
author
Manuel Vivo
committed
Fix spotless
1 parent 91633af commit 755413b

File tree

1 file changed

+2
-2
lines changed
  • core/datastore-test/src/main/java/com/google/samples/apps/nowinandroid/core/datastore/test

1 file changed

+2
-2
lines changed

core/datastore-test/src/main/java/com/google/samples/apps/nowinandroid/core/datastore/test/TestDataStoreModule.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ object TestDataStoreModule {
5050
tmpFolder.testUserPreferencesDataStore(
5151
// TODO: Provide an application-wide CoroutineScope in the DI graph
5252
coroutineScope = CoroutineScope(SupervisorJob() + ioDispatcher),
53-
userPreferencesSerializer = userPreferencesSerializer
53+
userPreferencesSerializer = userPreferencesSerializer,
5454
)
5555
}
5656

@@ -59,7 +59,7 @@ fun TemporaryFolder.testUserPreferencesDataStore(
5959
userPreferencesSerializer: UserPreferencesSerializer = UserPreferencesSerializer(),
6060
) = DataStoreFactory.create(
6161
serializer = userPreferencesSerializer,
62-
scope = coroutineScope
62+
scope = coroutineScope,
6363
) {
6464
newFile("user_preferences_test.pb")
6565
}

0 commit comments

Comments
 (0)