Skip to content

Commit 10c4e7a

Browse files
committed
fix tests so they pass vs RAI master
1 parent 8032b4f commit 10c4e7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/results/tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ export const standardTypeTests: Test[] = [
399399
},
400400
{
401401
name: 'Float16',
402-
query: `def output = float[16, 12], float[16, 42.5], float[16, -0.0]`,
402+
query: `def output = float[16, 12], float[16, 42.5], float[16, 0.0]`,
403403
typeDefs: [
404404
{
405405
type: 'Float16',
@@ -416,7 +416,7 @@ export const standardTypeTests: Test[] = [
416416
},
417417
{
418418
name: 'Float32',
419-
query: `def output = float[32, 12], float[32, 42.5], float[32, -0.0]`,
419+
query: `def output = float[32, 12], float[32, 42.5], float[32, 0.0]`,
420420
typeDefs: [
421421
{
422422
type: 'Float32',
@@ -433,7 +433,7 @@ export const standardTypeTests: Test[] = [
433433
},
434434
{
435435
name: 'Float64',
436-
query: `def output = float[64, 12], float[64, 42.5], float[64, -0.0]`,
436+
query: `def output = float[64, 12], float[64, 42.5], float[64, 0.0]`,
437437
typeDefs: [
438438
{
439439
type: 'Float64',

0 commit comments

Comments
 (0)