Skip to content

Commit

Permalink
Merge pull request #5 from apex-enterprise-patterns/devops/upgrade-ap…
Browse files Browse the repository at this point in the history
…i-to-v56-and-switch-to-new-assert-function

Switch to new assert function
  • Loading branch information
ImJohnMDaniel authored Nov 26, 2023
2 parents 5059b1e + 4894e1c commit 6604222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion force-app-1/test/classes/AutoLaunchFlowDemoTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private class AutoLaunchFlowDemoTest {
// When
String reversedString = AutoLaunchFlowDemo.reverseFlowString();
// Then
System.assertEquals('!gnirts wolF kcoM', reversedString);
System.Assert.areEqual('!gnirts wolF kcoM', reversedString);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion force-app-1/test/classes/RuntimeBindingDemoOrgTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class RuntimeBindingDemoOrgTest {
RuntimeBindingDemoOrg.WelcomeApp app = new RuntimeBindingDemoOrg.WelcomeApp();
String message = app.greetings();
// Then
System.assertEquals('Startup Message:Say Something Message', message);
System.Assert.areEqual('Startup Message:Say Something Message', message);
}

/**
Expand Down

0 comments on commit 6604222

Please sign in to comment.