From 49dd7642fc700ecf8f26c39e9b7e8ff9639a2a12 Mon Sep 17 00:00:00 2001 From: Aniket <30843294+Aniket-Engg@users.noreply.github.com> Date: Tue, 14 Apr 2020 16:42:01 +0530 Subject: [PATCH] Update unittesting_examples.md --- docs/unittesting_examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/unittesting_examples.md b/docs/unittesting_examples.md index ee57c8ceb7..94b6c6fa65 100644 --- a/docs/unittesting_examples.md +++ b/docs/unittesting_examples.md @@ -88,7 +88,7 @@ Test contract/program: `Sender_test.sol` pragma solidity >=0.4.22 <0.7.0; import "remix_tests.sol"; // this import is automatically injected by Remix import "remix_accounts.sol"; -import "./sender.sol"; +import "./Sender.sol"; // Inherit 'Sender' contract contract SenderTest is Sender { @@ -326,4 +326,4 @@ contract ValueTest{ Assert.equal(v.getTokenBalance(), 30, 'token balance should be 30'); } } -``` \ No newline at end of file +```