[minor]
This commit is contained in:
parent
9a23081cda
commit
45b4c1a056
2 changed files with 6 additions and 1 deletions
|
@ -59,7 +59,6 @@ impl BaseCalendar for CachedCalendar {
|
||||||
#[async_trait]
|
#[async_trait]
|
||||||
impl CompleteCalendar for CachedCalendar {
|
impl CompleteCalendar for CachedCalendar {
|
||||||
async fn get_item_ids(&self) -> Result<HashSet<ItemId>, Box<dyn Error>> {
|
async fn get_item_ids(&self) -> Result<HashSet<ItemId>, Box<dyn Error>> {
|
||||||
eprintln!("Overridden implem");
|
|
||||||
Ok(self.items.iter()
|
Ok(self.items.iter()
|
||||||
.map(|(id, _)| id.clone())
|
.map(|(id, _)| id.clone())
|
||||||
.collect()
|
.collect()
|
||||||
|
|
6
tests/sync-reminder.rs
Normal file
6
tests/sync-reminder.rs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#[test]
|
||||||
|
#[ignore]
|
||||||
|
fn do_not_forget_to_run_tests_with_specific_features() {
|
||||||
|
// This is just a reminder that there are tests that can be run only when cargo feature "integration_tests" is enabled.
|
||||||
|
// See `sync.rs`
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue