Skip to content

Commit ff73beb

Browse files
committed
test fix + patch release
1 parent a9e159e commit ff73beb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LiveServer"
22
uuid = "16fef848-5104-11e9-1b77-fb7a48bbb589"
33
authors = ["Jonas Asprion <jonas.asprion@gmx.ch", "Thibaut Lienart <tlienart@me.com>"]
4-
version = "0.6.1"
4+
version = "0.6.2"
55

66
[deps]
77
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"

test/server.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ tasks that you will try to start.
7373
# if one asks for something incorrect, a 404 should be returned
7474
response = HTTP.get("http://localhost:$port/no.html"; status_exception=false)
7575
@test response.status == 404
76-
@test occursin("404: file not found. The most likely reason", String(response.body))
76+
@test occursin("404: file not found.", String(response.body))
7777
# test custom 404.html page
7878
mkdir("404"); write("404/index.html", "custom 404")
7979
response = HTTP.get("http://localhost:$port/no.html"; status_exception=false)

0 commit comments

Comments
 (0)