mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
feat: cloud storage test (#2663)
* chore: show default user name * chore: update * feat: change collab storage type after auth type changed * chore: reload folder * chore: initial the group controller if need * chore: update patch * chore: update patch ref
This commit is contained in:
@ -11,7 +11,7 @@ async fn export_meta_csv_test() {
|
||||
let database = test.editor.clone();
|
||||
let s = database.export_csv(CSVFormat::META).await.unwrap();
|
||||
let mut reader = csv::Reader::from_reader(s.as_bytes());
|
||||
for header in reader.headers() {
|
||||
for header in reader.headers().unwrap() {
|
||||
dbg!(header);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user