From 7deb8583be9acfd58f5b19696d77cf244eea246d Mon Sep 17 00:00:00 2001
From: Danny McCormick <damccorm@microsoft.com>
Date: Thu, 11 Jul 2019 17:04:02 -0400
Subject: [PATCH] case sensitive?

---
 __tests__/finder.test.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/__tests__/finder.test.ts b/__tests__/finder.test.ts
index 07bc133..d1a9090 100644
--- a/__tests__/finder.test.ts
+++ b/__tests__/finder.test.ts
@@ -31,7 +31,7 @@ import * as finder from '../src/find-python';
 
 describe('Finder tests', () => {
   it('Finds Python if it is installed', async () => {
-    const pythonDir: string = path.join(toolDir, 'python', '3.0.0', 'x64');
+    const pythonDir: string = path.join(toolDir, 'Python', '3.0.0', 'x64');
     await io.mkdirP(pythonDir);
     fs.writeFileSync(`${pythonDir}.complete`, 'hello');
     // This will throw if it doesn't find it in the cache (because no such version exists)