@@ -1404,7 +1404,6 @@ export const specializationTests: Test[] = [
1404
1404
{
1405
1405
name : 'UUID' ,
1406
1406
query : `
1407
- with rel:base use uuid_from_string
1408
1407
def v = uuid_from_string["22b4a8a1-e548-4eeb-9270-60426d66a48e"]
1409
1408
def output = #(v)
1410
1409
` ,
@@ -1423,7 +1422,6 @@ export const specializationTests: Test[] = [
1423
1422
{
1424
1423
name : 'SHA1' ,
1425
1424
query : `
1426
- with rel:base use ^SHA1
1427
1425
def v = ^SHA1[0x0d7d4a744fd92effd1ed88e48ac8231e, 0x7f7e9e6c]
1428
1426
def output = #(v)
1429
1427
` ,
@@ -2568,7 +2566,6 @@ export const valueTypeTests: Test[] = [
2568
2566
{
2569
2567
name : 'UUID' ,
2570
2568
query : `
2571
- with rel:base use uuid_from_string, UUID
2572
2569
def uuid = uuid_from_string["22b4a8a1-e548-4eeb-9270-60426d66a48e"]
2573
2570
value type MyType = Int, UUID
2574
2571
def output = ^MyType[1, uuid]
@@ -2596,7 +2593,6 @@ export const valueTypeTests: Test[] = [
2596
2593
{
2597
2594
name : 'SHA1' ,
2598
2595
query : `
2599
- with rel:base use ^SHA1, SHA1
2600
2596
def sha1 = ^SHA1[0x0d7d4a744fd92effd1ed88e48ac8231e, 0x7f7e9e6c]
2601
2597
value type MyType = Int, SHA1
2602
2598
def output = ^MyType[1, sha1]
@@ -4145,7 +4141,6 @@ export const valueTypeSpecializationTests: Test[] = [
4145
4141
{
4146
4142
name : 'UUID' ,
4147
4143
query : `
4148
- with rel:base use uuid_from_string, UUID
4149
4144
def uuid = uuid_from_string["22b4a8a1-e548-4eeb-9270-60426d66a48e"]
4150
4145
value type MyType = UUID, Int
4151
4146
def v = ^MyType[uuid, 1]
@@ -4178,7 +4173,6 @@ export const valueTypeSpecializationTests: Test[] = [
4178
4173
{
4179
4174
name : 'SHA1' ,
4180
4175
query : `
4181
- with rel:base use ^SHA1, SHA1
4182
4176
def sha1 = ^SHA1[0x0d7d4a744fd92effd1ed88e48ac8231e, 0x7f7e9e6c]
4183
4177
value type MyType = SHA1, Int
4184
4178
def v = ^MyType[sha1, 1]
0 commit comments