Skip to content

Commit

Permalink
[#1097] Adopt Bip39 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
HonzaR committed Jul 4, 2023
1 parent e60af8e commit 2f1b021
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ ANDROIDX_TEST_CORE_VERSION=1.5.0
ANDROIDX_TEST_RUNNER_VERSION=1.5.2
ANDROIDX_TRACING_VERSION=1.2.0-rc01
ANDROIDX_UI_AUTOMATOR_VERSION=2.3.0-alpha03
BIP39_VERSION=1.0.4
BIP39_VERSION=1.0.5
CORE_LIBRARY_DESUGARING_VERSION=2.0.3
COROUTINES_OKHTTP=1.0
GOOGLE_MATERIAL_VERSION=1.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import cash.z.ecc.android.sdk.test.getAppContext
import cash.z.ecc.fixture.DatabaseCacheFilesRootFixture
import cash.z.ecc.fixture.DatabaseNameFixture
import cash.z.ecc.fixture.DatabasePathFixture
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.test.runTest
import org.junit.Assert.assertEquals
import org.junit.Assert.assertFalse
Expand All @@ -31,7 +30,6 @@ class DatabaseCoordinatorTest {

@Test
@SmallTest
@OptIn(ExperimentalCoroutinesApi::class)
fun database_cache_root_directory_creation_test() = runTest {
val parentDirectory = File(DatabasePathFixture.new())
val destinationDirectory = DatabaseCacheFilesRootFixture.newCacheRoot()
Expand All @@ -47,7 +45,6 @@ class DatabaseCoordinatorTest {

@Test
@SmallTest
@OptIn(ExperimentalCoroutinesApi::class)
fun database_data_file_creation_test() = runTest {
val directory = File(DatabasePathFixture.new())
val fileName = DatabaseNameFixture.newDb(name = DatabaseCoordinator.DB_DATA_NAME)
Expand All @@ -63,7 +60,6 @@ class DatabaseCoordinatorTest {

@Test
@SmallTest
@OptIn(ExperimentalCoroutinesApi::class)
fun database_transactions_file_creation_test() = runTest {
val directory = File(DatabasePathFixture.new())
val fileName = DatabaseNameFixture.newDb(name = DatabaseCoordinator.DB_PENDING_TRANSACTIONS_NAME)
Expand All @@ -79,7 +75,6 @@ class DatabaseCoordinatorTest {

@Test
@SmallTest
@OptIn(ExperimentalCoroutinesApi::class)
fun data_database_files_move_test() = runTest {
val parentFile = File(
DatabasePathFixture.new(
Expand Down Expand Up @@ -163,7 +158,6 @@ class DatabaseCoordinatorTest {

@Test
@SmallTest
@OptIn(ExperimentalCoroutinesApi::class)
fun delete_data_database_files_test() = runTest {
val parentFile = File(
DatabasePathFixture.new(
Expand Down Expand Up @@ -204,7 +198,6 @@ class DatabaseCoordinatorTest {
*/
@Test
@SmallTest
@OptIn(ExperimentalCoroutinesApi::class)
fun delete_all_legacy_database_files_test() = runTest {
// create older location legacy files
val olderLegacyParentFile = File(
Expand Down Expand Up @@ -301,7 +294,6 @@ class DatabaseCoordinatorTest {
}
}

@OptIn(ExperimentalCoroutinesApi::class)
@Test
@SmallTest
fun data_db_path() = runTest {
Expand All @@ -315,7 +307,6 @@ class DatabaseCoordinatorTest {
)
}

@OptIn(ExperimentalCoroutinesApi::class)
@Test
@SmallTest
fun cache_path() = runTest {
Expand Down

0 comments on commit 2f1b021

Please sign in to comment.