Skip to content

Commit bc04e93

Browse files
committed
Fix broken test (due to error message change)
1 parent 804eec4 commit bc04e93

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ git:
1616
## (tests will run but not make your overall status red)
1717
matrix:
1818
allow_failures:
19-
- julia: 1.1
2019
- julia: nightly
2120

2221
## uncomment and modify the following lines to manually install system packages

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ platform:
1212
## (tests will run but not make your overall status red)
1313
matrix:
1414
allow_failures:
15-
- julia_version: 1.1
1615
- julia_version: latest
1716

1817
branches:

test/basic.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,8 @@ end
987987
@test String(sym) == string(Char(0xdcdb))
988988
@test Meta.lower(Main, sym) === sym
989989
res = string(Meta.parse(string(Char(0xdcdb)," = 1"),1,raise=false)[1])
990-
@test res == """\$(Expr(:error, "invalid character \\\"\\udcdb\\\"\"))"""
990+
@test startswith(res, "\$(Expr(:error, \"invalid character \\\"\\udcdb\\\"")
991+
@test endswith(res, "\"))")
991992
end
992993
end
993994

0 commit comments

Comments
 (0)