diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f24ee81fee..6698e31d37 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -129,21 +129,6 @@ jobs: command: test args: --all-targets --workspace - # If the previous step fails, create a new Github issue - # to nofity us about it. - - if: ${{ failure() }} - uses: JasonEtco/create-an-issue@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - # Use this issue template: - filename: .github/issue_templates/nightly_run_failed.md - # Don't create a new issue; skip updating existing: - update_existing: false - # Look for new *open* issues in this search (we want to - # create a new one if we only find closed versions): - search_existing: open - clippy: name: Cargo clippy runs-on: ubuntu-latest diff --git a/tests/integration/frame/balances.rs b/tests/integration/frame/balances.rs index 54cbaf26ca..8b12790ffa 100644 --- a/tests/integration/frame/balances.rs +++ b/tests/integration/frame/balances.rs @@ -80,7 +80,7 @@ async fn tx_basic_transfer() { let expected_event = balances::events::Transfer { from: alice.account_id().clone(), to: bob.account_id().clone(), - amount: 10_000_000_0, // TESTING + amount: 10_000, }; assert_eq!(event, expected_event);