Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wang committed Mar 19, 2018
1 parent ed4b6d5 commit 31792c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/scala/is/hail/io/ExportVCFSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,13 @@ class ExportVCFSuite extends SparkSuite {

TestUtils.interceptFatal("Invalid type for format field 'BOOL'. Found 'bool'.") {
ExportVCF(vds
.annotateEntriesExpr("g = {BOOL: true}"),
.annotateEntriesExpr("g.BOOL = true"),
out)
}

TestUtils.interceptFatal("Invalid type for format field 'AA'.") {
ExportVCF(vds
.annotateEntriesExpr("g = {AA: [[0]]}"),
.annotateEntriesExpr("g.AA = [[0]]"),
out)
}
}
Expand Down

0 comments on commit 31792c4

Please sign in to comment.