Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
nvonpentz committed Oct 28, 2024
1 parent 113b3d2 commit 90695ca
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions components/brave_wallet/browser/simple_hash_client_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1880,7 +1880,7 @@ TEST_F(SimpleHashClientUnitTest, GetNftMetadatas) {
// Test case for duplicate NFT identifiers
nft_identifiers = std::vector<mojom::NftIdentifierPtr>();
expected_metadatas = std::vector<mojom::NftMetadataPtr>();

// Add two identical NFT identifiers
auto duplicate_nft_identifier1 = mojom::NftIdentifier::New();
duplicate_nft_identifier1->chain_id = mojom::kSolanaMainnet;
Expand All @@ -1896,7 +1896,8 @@ TEST_F(SimpleHashClientUnitTest, GetNftMetadatas) {
duplicate_nft_identifier2->token_id = "";
nft_identifiers.push_back(std::move(duplicate_nft_identifier2));

// Create JSON response for duplicate NFTs (response will contain only one entry)
// Create JSON response for duplicate NFTs (response will contain only one
// entry)
std::string duplicate_json = R"({
"nfts": [
{
Expand Down Expand Up @@ -1927,7 +1928,8 @@ TEST_F(SimpleHashClientUnitTest, GetNftMetadatas) {
duplicate_metadata->animation_url = "";
duplicate_metadata->youtube_url = "";

// Add the same metadata twice since we expect the API to return the same data for both requests
// Add the same metadata twice since we expect the API to return the same data
// for both requests
expected_metadatas.push_back(duplicate_metadata.Clone());
expected_metadatas.push_back(std::move(duplicate_metadata));

Expand All @@ -1936,7 +1938,8 @@ TEST_F(SimpleHashClientUnitTest, GetNftMetadatas) {
responses[GURL(
"https://simplehash.wallet.brave.com/api/v0/nfts/"
"assets?nft_ids=solana.2iZBbRGnLVEEZH6JDsaNsTo66s2uxx7DTchVWKU8oisR%"
"2Csolana.2iZBbRGnLVEEZH6JDsaNsTo66s2uxx7DTchVWKU8oisR")] = duplicate_json;
"2Csolana.2iZBbRGnLVEEZH6JDsaNsTo66s2uxx7DTchVWKU8oisR")] =
duplicate_json;

SetInterceptors(responses);
TestGetNftMetadatas(mojom::CoinType::SOL, std::move(nft_identifiers),
Expand Down

0 comments on commit 90695ca

Please sign in to comment.