From 98727fbb634c72eaf996da4d761e9546545a4bd8 Mon Sep 17 00:00:00 2001 From: Adam Thomason Date: Sun, 11 Sep 2016 16:48:12 -0700 Subject: [PATCH] Update spec config path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tracks schema/schema.json → schema/config-schema.json rename in https://github.com/opencontainers/runtime-spec/pull/481/commits/59ede1a6ac23ed10d6b644afc1e8cb45a57aa62e Signed-off-by: Adam Thomason --- tests/integration/spec.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/spec.bats b/tests/integration/spec.bats index 8271b38b6..a9ea8eb35 100644 --- a/tests/integration/spec.bats +++ b/tests/integration/spec.bats @@ -78,7 +78,7 @@ function teardown() { run git reset --hard "${SPEC_COMMIT}" ) [ "$status" -eq 0 ] - [ -e src/runtime-spec/schema/schema.json ] + [ -e src/runtime-spec/schema/config-schema.json ] run bash -c "GOPATH='$GOPATH' go get github.com/xeipuuv/gojsonschema" [ "$status" -eq 0 ] @@ -89,7 +89,7 @@ function teardown() { runc spec [ -e config.json ] - run ./validate src/runtime-spec/schema/schema.json config.json + run ./validate src/runtime-spec/schema/config-schema.json config.json [ "$status" -eq 0 ] [[ "${lines[0]}" == *"The document is valid"* ]] }