Skip to content

Commit ee8677c

Browse files
aroachthinkingserious
authored andcommitted
Fix test looking for LICENSE.txt (#85)
1 parent 15dbbfa commit ee8677c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UnitTest/UnitTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public class TestRepositoryFiles
104104
[Test]
105105
public void TestLicenseEndYear()
106106
{
107-
var licensePath = Path.Combine("..", "..", "..", "LICENSE.txt");
107+
var licensePath = Path.Combine("..", "..", "..", "LICENSE.md");
108108
string line = File.ReadLines(licensePath).Skip(2).Take(1).First();
109109

110110
Assert.AreEqual(DateTime.Now.Year.ToString(), line.Substring(19, 4));

0 commit comments

Comments
 (0)