Skip to content

Commit 67622b2

Browse files
venilinvasilevtr11
authored andcommitted
fix: ignored e2e tests (hiero-ledger#1055)
Signed-off-by: venilinvasilev <[email protected]> Signed-off-by: Tiago Requeijo <[email protected]>
1 parent eefd545 commit 67622b2

File tree

9 files changed

+3
-10
lines changed

9 files changed

+3
-10
lines changed

.github/workflows/flow-rust-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ jobs:
119119
- name: Create env file
120120
run: |
121121
touch .env
122-
echo TEST_OPERATOR_KEY="302e020100300506032b65700422042091132178e72057a1d7528025956fe39b0b847f200ab59b2fdd367017f3087137" >> .env
123-
echo TEST_OPERATOR_ID="0.0.2" >> .env
122+
echo TEST_OPERATOR_KEY="${{ steps.solo.outputs.privateKey }}" >> .env
123+
echo TEST_OPERATOR_ID="${{ steps.solo.outputs.accountId }}" >> .env
124124
echo TEST_NETWORK_NAME="localhost" >> .env
125125
echo TEST_RUN_NONFREE="1" >> .env
126126
cat .env

tests/e2e/account/info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
122122
}
123123

124124
#[tokio::test]
125-
#[ignore]
126125
async fn get_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
127126
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
128127
return Ok(());

tests/e2e/contract/info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
173173
}
174174

175175
#[tokio::test]
176-
#[ignore]
177176
async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
178177
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
179178
return Ok(());

tests/e2e/contract/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ async fn create_contract(
110110
}
111111

112112
let contract_id = tx
113-
.gas(200_000)
113+
.gas(300_000)
114114
.constructor_parameters(
115115
ContractFunctionParameters::new().add_string("Hello from Hedera.").to_bytes(None),
116116
)

tests/e2e/file/contents.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
190190
}
191191

192192
#[tokio::test]
193-
#[ignore]
194193
async fn query_insufficient_tx_fee_fails() -> anyhow::Result<()> {
195194
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
196195
return Ok(());

tests/e2e/network_version_info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
8585
}
8686

8787
#[tokio::test]
88-
#[ignore]
8988
async fn get_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
9089
let Some(TestEnvironment { config: _, client }) = setup_nonfree() else {
9190
return Ok(());

tests/e2e/schedule/info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
223223
}
224224

225225
#[tokio::test]
226-
#[ignore]
227226
async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
228227
let Some(TestEnvironment { config, client }) = setup_nonfree() else {
229228
return Ok(());

tests/e2e/token/info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,6 @@ async fn query_cost_small_max_fails() -> anyhow::Result<()> {
271271
}
272272

273273
#[tokio::test]
274-
#[ignore]
275274
async fn query_cost_insufficient_tx_fee_fails() -> anyhow::Result<()> {
276275
let Some(TestEnvironment { config: _, client }) = setup_nonfree() else {
277276
return Ok(());

tests/e2e/topic/info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ async fn query_cost_small_max() -> anyhow::Result<()> {
106106
}
107107

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

0 commit comments

Comments
 (0)