Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
supermassive committed Dec 3, 2024
1 parent 46c254b commit efc3048
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/brave_wallet/browser/internal/hd_key_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace brave_wallet {
std::optional<std::vector<uint32_t>> ParseFullHDPath(std::string_view path) {
auto entries = base::SplitStringPiece(
path, "/", base::WhitespaceHandling::TRIM_WHITESPACE,
base::SplitResult::SPLIT_WANT_NONEMPTY);
base::SplitResult::SPLIT_WANT_ALL);

if (entries.empty()) {
return std::nullopt;
Expand Down
3 changes: 2 additions & 1 deletion components/brave_wallet/browser/solana_keyring_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ TEST(SolanaKeyringUnitTest, ImportAccount) {

private_key.clear();
ASSERT_TRUE(base::HexStringToBytes(
"bee602cc7dd4c1be27d8459892ab4e23f7a1d31ffde8cdd50542068ada52a201",
"bee602cc7dd4c1be27d8459892ab4e23f7a1d31ffde8cdd50542068ada52a201"
"b2d66b28055a98f8e4c19afeb026fd0c2f6755bf1830ad542d86d64b24da43c2",
&private_key));
keyring.ImportAccount(private_key);
EXPECT_EQ(keyring.GetImportedAccountsForTesting().size(), 2u);
Expand Down

0 comments on commit efc3048

Please sign in to comment.