Skip to content

Commit 27b95e9

Browse files
committed
fix test
1 parent 7895eb3 commit 27b95e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/lib/sources/gitHubSource.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ describe('parseGitHubUrl', () => {
128128
const path = '/path/to/file.parquet'
129129
it('parses a FileUrl for file URL', () => {
130130
const url = `https://github.com/${repo}/blob/${branch}${path}`
131-
const resolveUrl = `https://raw.githubusercontent.com/${repo}/refs/heads/${branch}${path}`
131+
const resolveUrl = `https://raw.githubusercontent.com/${repo}/${branch}${path}`
132132
expect(parseGitHubUrl(url)).toEqual({
133133
kind: 'file',
134134
origin,

0 commit comments

Comments
 (0)