Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/e2e_migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ jobs:
fail-fast: false
matrix:
scenario:
- { name: migration_1, grep: "@migration_1" }
- { name: migration_2, grep: "@migration_2" }
- { name: migration_3, grep: "@migration_3" }
- { name: migration_4, grep: "@migration_4" }
- { name: migration_1-restore, grep: "@migration_1" }
- { name: migration_2-migration, grep: "@migration_2" }
- { name: migration_3-with-passphrase, grep: "@migration_3" }
- { name: migration_4-with-sweep, grep: "@migration_4" }

name: e2e-tests - ${{ matrix.scenario.name }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
Expand Down Expand Up @@ -224,7 +225,9 @@
PrimaryButton(
text = stringResource(R.string.sweep__to_wallet),
onClick = onSweepToWallet,
modifier = Modifier.fillMaxWidth()
modifier = Modifier
.fillMaxWidth()

Check warning

Code scanning / detekt

Reports mis-indented code Warning

Unexpected indentation (24) (should be 16)
.testTag("SweepToWalletButton")

Check warning

Code scanning / detekt

Reports mis-indented code Warning

Unexpected indentation (24) (should be 16)
)

VerticalSpacer(16.dp)
Expand Down
Loading