Skip to content

Commit

Permalink
Update labels in UI to align with change of project name to 'Pine'
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Sep 19, 2024
1 parent b4b5e93 commit d1ff35c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion implement/pine/ElmInteractive/TestElmInteractive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public static ImmutableDictionary<string, InteractiveScenarioTestReport> TestElm
(!failedSteps.IsEmpty ? "Failed" : "Passed") + "!",
string.Join(", ", overallStats.Select(stat => stat.label + ": " + stat.value)),
scenarios.ScenariosTreeCompositionHash[..10] +
" (elm-time " + Program.AppVersionId + " with Elm compiler " + interactiveConfig.CompilerId + ")"),
" (Pine " + Program.AppVersionId + " with Elm compiler " + interactiveConfig.CompilerId + ")"),
color: !failedSteps.IsEmpty ? IConsole.TextColor.Red : IConsole.TextColor.Green);

var failedScenarios =
Expand Down
2 changes: 1 addition & 1 deletion implement/pine/UserSecrets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace ElmTime;
public static class UserSecrets
{
private static string FileStoreDirectory =>
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "elm-time", "user-secrets");
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "pine", "user-secrets");

private static IFileStore FileStore => new FileStoreFromSystemIOFile(FileStoreDirectory);

Expand Down

0 comments on commit d1ff35c

Please sign in to comment.