Skip to content
This repository was archived by the owner on Sep 13, 2021. It is now read-only.
Prev Previous commit
Next Next commit
Use Charlie for Solang tests
  • Loading branch information
Stefie committed Mar 31, 2020
commit 6e49b57e4d00467fe8bb762424340d1f911fda9f
4 changes: 2 additions & 2 deletions tests/contracts-solidity.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {

// This is a test account that is going to be created and funded before each test.
const keyring = testKeyring({ type: "sr25519" });
const BOB = keyring.getPair(CHARLIE);
const BOB = keyring.getPair(CHARLIE_ADDRESS);
const randomSeed = randomAsU8a(32);
let contractCreator: KeyringPair;
let api: ApiPromise;
Expand Down Expand Up @@ -59,7 +59,7 @@ beforeEach(
}
);

describe("AssemblyScript Smart Contracts", () => {
describe("Solang Smart Contracts", () => {
test("Raw Flipper contract", async (done): Promise<void> => {
// See https://github.com/paritytech/pallet-contracts-waterfall/issues/6 for info about
// how to get the STORAGE_KEY of an instantiated contract
Expand Down