Skip to content

Commit

Permalink
undo testing things; seems to work
Browse files Browse the repository at this point in the history
  • Loading branch information
jsdw committed Nov 29, 2021
1 parent 26559fb commit a9430a9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 16 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/frame/balances.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit a9430a9

Please sign in to comment.