Skip to content

Commit

Permalink
🩹 Correct Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
soo-bak committed Sep 22, 2024
1 parent 0f9c9ee commit fce3c06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Tests/TestUtilities/TestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using UnityEngine.SceneManagement;

namespace SUL.TestUtilities {

public static class TestHelper {
public static IEnumerator SimulateSceneTransition() {
var originScene = SceneManager.GetActiveScene();
Expand All @@ -14,4 +13,4 @@ public static IEnumerator SimulateSceneTransition() {
}
}

} // namespace
} // namespace
3 changes: 2 additions & 1 deletion Tests/Utilities/StringExtensionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public void Reverse_WithNonEmptyString_ReturnsReversedString() {

// Act
string result = original.Reverse();

// Assert
Assert.AreEqual(expected, result);
}
Expand All @@ -31,6 +31,7 @@ public void Reverse_WithEmptyString_ReturnsEmptyString() {
// Assert
Assert.AreEqual(expected, result);
}

}

} // namespace

0 comments on commit fce3c06

Please sign in to comment.