Skip to content

Commit 40084cf

Browse files
committed
Update image URLs in TestUtils to use 'main' branch
1 parent fdb0502 commit 40084cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/_PackageRoot/Tests/Base/Utils/TestUtils.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ public static partial class TestUtils
1212
{
1313
public static readonly string[] ImageURLs =
1414
{
15-
"https://github.com/IvanMurzak/Unity-ImageLoader/raw/master/Test%20Images/ImageA.jpg",
16-
"https://github.com/IvanMurzak/Unity-ImageLoader/raw/master/Test%20Images/ImageB.png",
17-
"https://github.com/IvanMurzak/Unity-ImageLoader/raw/master/Test%20Images/ImageC.png"
15+
"https://github.com/IvanMurzak/Unity-ImageLoader/raw/main/Test%20Images/ImageA.jpg",
16+
"https://github.com/IvanMurzak/Unity-ImageLoader/raw/main/Test%20Images/ImageB.png",
17+
"https://github.com/IvanMurzak/Unity-ImageLoader/raw/main/Test%20Images/ImageC.png"
1818
};
1919
public static string IncorrectImageURL => $"https://doesntexist.com/{Guid.NewGuid()}.png";
2020
public static IEnumerable<string> IncorrectImageURLs(int count = 3) => Enumerable.Range(0, count).Select(_ => IncorrectImageURL);

0 commit comments

Comments
 (0)