Skip to content

Commit

Permalink
feedbase_test.sol: remove stray value()s [#23]
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrock committed Aug 7, 2016
1 parent 645c77b commit 6a9b44c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions contracts/feedbase_test.sol
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ contract FeedbaseTest is Test,
var (value, ok) = assistant.get(id);
assertEq32(value, 0x1234);
assertTrue(ok);

assertEq32(feedbase.value(id), 0x1234);
}

function test_get_expired() {
Expand All @@ -73,8 +71,6 @@ contract FeedbaseTest is Test,
var (value, ok) = feedbase.get(id);
assertEq32(value, 0);
assertFalse(ok);

assertEq32(feedbase.value(id), 0);
}

function test_payment() {
Expand Down

0 comments on commit 6a9b44c

Please sign in to comment.