Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit f3704db

Browse files
committed
Bump token-2022 test CUs again for tip of 1.9
1 parent edc524f commit f3704db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

token/program-2022/tests/assert_instruction_count.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async fn initialize_mint() {
6060
#[tokio::test]
6161
async fn initialize_account() {
6262
let mut pt = ProgramTest::new("spl_token_2022", id(), processor!(Processor::process));
63-
pt.set_compute_max_units(7_000); // last known 3284
63+
pt.set_compute_max_units(8_000); // last known 7064
6464
let (mut banks_client, payer, recent_blockhash) = pt.start().await;
6565

6666
let owner = Keypair::new();
@@ -112,7 +112,7 @@ async fn initialize_account() {
112112
#[tokio::test]
113113
async fn mint_to() {
114114
let mut pt = ProgramTest::new("spl_token_2022", id(), processor!(Processor::process));
115-
pt.set_compute_max_units(7_000); // last known 2668
115+
pt.set_compute_max_units(8_000); // last known 7033
116116
let (mut banks_client, payer, recent_blockhash) = pt.start().await;
117117

118118
let owner = Keypair::new();
@@ -161,7 +161,7 @@ async fn mint_to() {
161161
#[tokio::test]
162162
async fn transfer() {
163163
let mut pt = ProgramTest::new("spl_token_2022", id(), processor!(Processor::process));
164-
pt.set_compute_max_units(7_000); // last known 2972
164+
pt.set_compute_max_units(8_000); // last known 7033
165165
let (mut banks_client, payer, recent_blockhash) = pt.start().await;
166166

167167
let owner = Keypair::new();
@@ -229,7 +229,7 @@ async fn transfer() {
229229
#[tokio::test]
230230
async fn burn() {
231231
let mut pt = ProgramTest::new("spl_token_2022", id(), processor!(Processor::process));
232-
pt.set_compute_max_units(7_000); // last known 2655
232+
pt.set_compute_max_units(8_000); // last known 7042
233233
let (mut banks_client, payer, recent_blockhash) = pt.start().await;
234234

235235
let owner = Keypair::new();

0 commit comments

Comments
 (0)