Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commit a9275eb

Browse files
author
Evgenii Kanivets
committed
#38[30m]. Fix tests.
1 parent 91bd1dd commit a9275eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/androidTest/java/com/blogspot/e_kanivets/moneytracker/repo/RecordRepoTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void testContentValues() throws Exception {
4747
expected.put(DbHelper.TYPE_COLUMN, Record.TYPE_EXPENSE);
4848
expected.put(DbHelper.TITLE_COLUMN, "title");
4949
expected.put(DbHelper.CATEGORY_ID_COLUMN, 1L);
50-
expected.put(DbHelper.PRICE_COLUMN, 100);
50+
expected.put(DbHelper.PRICE_COLUMN, 100.0);
5151
expected.put(DbHelper.ACCOUNT_ID_COLUMN, 1L);
5252
expected.put(DbHelper.CURRENCY_COLUMN, "NON");
5353

0 commit comments

Comments
 (0)