Skip to content

Commit

Permalink
🚨 fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tekkac committed Jun 4, 2024
1 parent 08a9ae1 commit f72c941
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
4 changes: 3 additions & 1 deletion src/tests/scenarios/test_iso_curve.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,9 @@ mod FarmingDepositWithdrawYielder {
use carbon::tests::data;

use carbon::tests::scenarios::test_iso_curve::{setup, Contracts};
use carbon::tests::scenarios::test_iso_curve::{SLOT, VALUE, PROJECT_VALUE, PRICE, ONE_DAY, ONE_MONTH, TON_EQUIVALENT};
use carbon::tests::scenarios::test_iso_curve::{
SLOT, VALUE, PROJECT_VALUE, PRICE, ONE_DAY, ONE_MONTH, TON_EQUIVALENT
};

fn max(a: u64, b: u64) -> u64 {
if a > b {
Expand Down
4 changes: 3 additions & 1 deletion src/tests/scenarios/test_iso_karathuru.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ mod ISOProjectKarathuru {
use carbon::tests::data;

use carbon::tests::scenarios::test_iso_karathuru::setup;
use carbon::tests::scenarios::test_iso_karathuru::{SLOT, VALUE, VALUE_USER_2, PROJECT_VALUE, PRICE, ONE_MONTH};
use carbon::tests::scenarios::test_iso_karathuru::{
SLOT, VALUE, VALUE_USER_2, PROJECT_VALUE, PRICE, ONE_MONTH
};

fn max(a: u64, b: u64) -> u64 {
if a > b {
Expand Down
4 changes: 3 additions & 1 deletion src/tests/scenarios/test_iso_las_delicias.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ mod FarmingDepositWithdrawYielder {
use carbon::tests::data;

use carbon::tests::scenarios::test_iso_las_delicias::setup;
use carbon::tests::scenarios::test_iso_las_delicias::{SLOT, VALUE, VALUE_USER_2, PROJECT_VALUE, PRICE, ONE_MONTH};
use carbon::tests::scenarios::test_iso_las_delicias::{
SLOT, VALUE, VALUE_USER_2, PROJECT_VALUE, PRICE, ONE_MONTH
};

fn max(a: u64, b: u64) -> u64 {
if a > b {
Expand Down
18 changes: 14 additions & 4 deletions src/tests/scenarios/test_iso_yielder_setting.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,10 @@ mod FarmingClaimingReward {
};
use carbon::tests::data;

use carbon::tests::scenarios::test_iso_yielder_setting::{setup, SLOT, VALUE, PROJECT_VALUE, PRICE, ONE_MONTH, TON_EQUIVALENT, SpanPrintImpl, deploy_yielder};
use carbon::tests::scenarios::test_iso_yielder_setting::{
setup, SLOT, VALUE, PROJECT_VALUE, PRICE, ONE_MONTH, TON_EQUIVALENT, SpanPrintImpl,
deploy_yielder
};

// Costly test to activate locally only
//#[test]
Expand Down Expand Up @@ -1340,7 +1343,9 @@ mod PriceConfigAccounting {
IFarmDispatcher, IFarmDispatcherTrait, IYieldFarmDispatcher, IYieldFarmDispatcherTrait
};

use carbon::tests::scenarios::test_iso_yielder_setting::{setup, SLOT, VALUE, PROJECT_VALUE, PRICE, ONE_MONTH, TON_EQUIVALENT, SpanPrintImpl};
use carbon::tests::scenarios::test_iso_yielder_setting::{
setup, SLOT, VALUE, PROJECT_VALUE, PRICE, ONE_MONTH, TON_EQUIVALENT, SpanPrintImpl
};

#[test]
#[available_gas(4_000_000_000)]
Expand Down Expand Up @@ -1528,7 +1533,9 @@ mod VerifyCumulativeSalePrice {
};
use carbon::tests::data;

use carbon::tests::scenarios::test_iso_yielder_setting::{setup, SLOT, VALUE, PROJECT_VALUE, PRICE, TON_EQUIVALENT, SpanPrintImpl};
use carbon::tests::scenarios::test_iso_yielder_setting::{
setup, SLOT, VALUE, PROJECT_VALUE, PRICE, TON_EQUIVALENT, SpanPrintImpl
};

#[test]
#[available_gas(4_000_000_000)]
Expand Down Expand Up @@ -1685,7 +1692,10 @@ mod AdditionalTests {
};
use carbon::tests::data;

use carbon::tests::scenarios::test_iso_yielder_setting::{setup,SpanPrintImpl,SLOT, VALUE, PROJECT_VALUE, ONE_MONTH, ONE_DAY, TON_EQUIVALENT, PRICE, setup_yielder, deploy_yielder};
use carbon::tests::scenarios::test_iso_yielder_setting::{
setup, SpanPrintImpl, SLOT, VALUE, PROJECT_VALUE, ONE_MONTH, ONE_DAY, TON_EQUIVALENT, PRICE,
setup_yielder, deploy_yielder
};


#[test]
Expand Down

0 comments on commit f72c941

Please sign in to comment.