Skip to content

Commit

Permalink
Fix mistake where variable was not being used
Browse files Browse the repository at this point in the history
  • Loading branch information
amberin committed Oct 5, 2024
1 parent 3984a2a commit 32607d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ interface SyncRepoTest {
AppPreferences.subfolderSupport(App.getAppContext(), true)
val folderName = "My Folder"
val fileName = "My file.org"
val ignoreFileContent = "folder/**\n!$folderName/$fileName\n"
val ignoreFileContent = "$folderName/**\n!$folderName/$fileName\n"
writeFileToRepo("...", syncRepo, repoManipulationPoint, fileName, folderName)
writeFileToRepo(ignoreFileContent, syncRepo, repoManipulationPoint, RepoIgnoreNode.IGNORE_FILE)
// When
Expand Down

0 comments on commit 32607d6

Please sign in to comment.