Skip to content

Commit 550e090

Browse files
committed
Adjusting name imports to std::common
1 parent 3457821 commit 550e090

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/results/tests.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ export const standardTypeTests: Test[] = [
242242
1,2,3
243243
4,5,6
244244
"""
245-
245+
246246
def csv = load_csv[config]
247-
247+
248248
def output(p) = csv(_, p, _)
249249
`,
250250
typeDefs: [
@@ -579,7 +579,7 @@ export const standardTypeTests: Test[] = [
579579
{
580580
name: 'UUID',
581581
query: `
582-
with rel:base use uuid_from_string
582+
from ::std::common import uuid_from_string
583583
def output = uuid_from_string["22b4a8a1-e548-4eeb-9270-60426d66a48e"]
584584
`,
585585
typeDefs: [
@@ -593,7 +593,7 @@ export const standardTypeTests: Test[] = [
593593
{
594594
name: 'SHA1',
595595
query: `
596-
with rel:base use ^SHA1
596+
from ::std::common import ^SHA1
597597
def output = ^SHA1[0x0d7d4a744fd92effd1ed88e48ac8231e, 0x7f7e9e6c]
598598
`,
599599
typeDefs: [
@@ -1916,7 +1916,7 @@ export const valueTypeTests: Test[] = [
19161916
a,b,c
19171917
1,2,3
19181918
"""
1919-
1919+
19201920
def csv = load_csv[config]
19211921
def v(p) = csv(_, p, _)
19221922
value type MyType = Int, FilePos
@@ -3339,7 +3339,7 @@ export const valueTypeSpecializationTests: Test[] = [
33393339
a,b,c
33403340
1,2,3
33413341
"""
3342-
3342+
33433343
def csv = load_csv[config]
33443344
def f(p) = csv(_, p, _)
33453345
value type MyType = FilePos, Int

0 commit comments

Comments
 (0)