mirror of
https://github.com/actions/setup-python.git
synced 2024-11-05 23:45:49 -05:00
case sensitive?
This commit is contained in:
parent
d9226ca4fd
commit
7deb8583be
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ import * as finder from '../src/find-python';
|
||||||
|
|
||||||
describe('Finder tests', () => {
|
describe('Finder tests', () => {
|
||||||
it('Finds Python if it is installed', async () => {
|
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);
|
await io.mkdirP(pythonDir);
|
||||||
fs.writeFileSync(`${pythonDir}.complete`, 'hello');
|
fs.writeFileSync(`${pythonDir}.complete`, 'hello');
|
||||||
// This will throw if it doesn't find it in the cache (because no such version exists)
|
// This will throw if it doesn't find it in the cache (because no such version exists)
|
||||||
|
|
Loading…
Reference in a new issue