Skip to content

Commit 0d85462

Browse files
committed
Add ToString on PathType for better test output
1 parent caa9663 commit 0d85462

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

osu.Game/Rulesets/Objects/Types/PathType.cs

+2
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,7 @@ public bool Equals(PathType other)
8181

8282
public static bool operator ==(PathType a, PathType b) => a.Equals(b);
8383
public static bool operator !=(PathType a, PathType b) => !a.Equals(b);
84+
85+
public override string ToString() => Description;
8486
}
8587
}

0 commit comments

Comments
 (0)