Skip to content

Commit

Permalink
Fix for older Unity
Browse files Browse the repository at this point in the history
  • Loading branch information
nowsprinting committed Apr 29, 2024
1 parent a9493af commit d117da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Attributes/LoadSceneAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class LoadSceneAttribute : NUnitAttribute, IOuterUnityTestAction
/// <seealso href="https://en.wikipedia.org/wiki/Glob_(programming)"/>
public LoadSceneAttribute(string path, [CallerFilePath] string callerFilePath = null)
{
if (path.StartsWith('.'))
if (path.StartsWith("."))
{
ScenePath = GetAbsolutePath(path, callerFilePath);
}
Expand Down

0 comments on commit d117da9

Please sign in to comment.