summaryrefslogtreecommitdiff
path: root/rust/schist_fakes/src/account.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/schist_fakes/src/account.rs')
-rw-r--r--rust/schist_fakes/src/account.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/schist_fakes/src/account.rs b/rust/schist_fakes/src/account.rs
index 1cee16e..1547eb7 100644
--- a/rust/schist_fakes/src/account.rs
+++ b/rust/schist_fakes/src/account.rs
@@ -1,4 +1,4 @@
-use schist_models::{account::Account, datetime_utc::DatetimeUtc};
+use schist_models::{account::Account, date_utc::DateUtc};
use schist_traits::nowlike::Nowlike;
pub fn make_fake_account(id: i32) -> Account {
@@ -6,6 +6,6 @@ pub fn make_fake_account(id: i32) -> Account {
id,
name: String::from("Joe Bloggs"),
opening_balance: 0,
- opening_date: DatetimeUtc::now(),
+ opening_date: DateUtc::now(),
}
}