Skip to content

Commit

Permalink
Fix test_cli_program_extend_program (#1115)
Browse files Browse the repository at this point in the history
* Unignore test

* Don't extend program accounts by default on test that expects them not to
  • Loading branch information
CriesofCarrots authored Apr 30, 2024
1 parent 1cdaa6d commit 680946c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cli/tests/program.rs
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,6 @@ fn test_cli_program_close_program() {
}

#[test]
#[ignore]
fn test_cli_program_extend_program() {
solana_logger::setup();

Expand Down Expand Up @@ -1052,7 +1051,7 @@ fn test_cli_program_extend_program() {
skip_fee_check: false,
compute_unit_price: None,
max_sign_attempts: 5,
no_extend: false,
no_extend: true,
use_rpc: false,
});
config.output_format = OutputFormat::JsonCompact;
Expand Down Expand Up @@ -1103,7 +1102,7 @@ fn test_cli_program_extend_program() {
skip_fee_check: false,
compute_unit_price: None,
max_sign_attempts: 5,
no_extend: false,
no_extend: true,
use_rpc: false,
});
process_command(&config).unwrap_err();
Expand Down Expand Up @@ -1139,7 +1138,7 @@ fn test_cli_program_extend_program() {
skip_fee_check: false,
compute_unit_price: None,
max_sign_attempts: 5,
no_extend: false,
no_extend: true,
use_rpc: false,
});
process_command(&config).unwrap();
Expand Down

0 comments on commit 680946c

Please sign in to comment.