Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/flow-rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ jobs:
- name: Create env file
run: |
touch .env
echo TEST_OPERATOR_KEY="302e020100300506032b65700422042091132178e72057a1d7528025956fe39b0b847f200ab59b2fdd367017f3087137" >> .env
echo TEST_OPERATOR_ID="0.0.2" >> .env
echo TEST_OPERATOR_KEY="${{ steps.solo.outputs.privateKey }}" >> .env
echo TEST_OPERATOR_ID="${{ steps.solo.outputs.accountId }}" >> .env
echo TEST_NETWORK_NAME="localhost" >> .env
echo TEST_RUN_NONFREE="1" >> .env
cat .env
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/account/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn get_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
return Ok(());
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/contract/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
return Ok(());
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/contract/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async fn create_contract(
}

let contract_id = tx
.gas(200_000)
.gas(300_000)
.constructor_parameters(
ContractFunctionParameters::new().add_string("Hello from Hedera.").to_bytes(None),
)
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/file/contents.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn query_insufficient_tx_fee_fails() -> anyhow::Result<()> {
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
return Ok(());
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/network_version_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn get_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
let Some(TestEnvironment { config: _, client }) = setup_nonfree() else {
return Ok(());
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/schedule/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
return Ok(());
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/token/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
let Some(TestEnvironment { config: _, client }) = setup_nonfree() else {
return Ok(());
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/topic/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ async fn query_cost_small_max() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
async fn query_cost_insufficient_tx_fee() -> anyhow::Result<()> {
let Some(TestEnvironment { config: _, client }) = setup_nonfree() else {
return Ok(());
Expand Down
Loading