From 8d778d7e1f4330e1fd0b8857ef251d2aa5be956d Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 14 Feb 2019 14:51:13 +0100 Subject: [PATCH] Fix flutter analyze Forgot to update the paramters in the test code. --- lib/gitapp.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/gitapp.dart b/lib/gitapp.dart index ff1aba53..563f26ff 100644 --- a/lib/gitapp.dart +++ b/lib/gitapp.dart @@ -94,7 +94,8 @@ class GitApp extends StatelessWidget { var baseGitPath = await getGitBaseDirectory(); await migrateGitRepo( fromGitBasePath: "journal_local", - toGitBasePath: "journal", + toGitBaseFolder: "journal", + toGitBaseSubFolder: "", gitBasePath: baseGitPath.path, ); },