Skip to content

Commit

Permalink
Fix schema versions in the tests (close #119)
Browse files Browse the repository at this point in the history
PR #120
  • Loading branch information
matus-tomlein authored Oct 5, 2022
1 parent 32a08e9 commit b1f7532
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests/IntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ private function getCurlEmitter($type) {

private function getContext() {
return array(
"schema" => "iglu:com.acme_company/context_example/jsonschema/2.1.1",
"schema" => "iglu:com.acme_company/context_example/jsonschema/2-1-1",
"data" => array("movie_name" => "Solaris", "poster_country" => "JP", "poster_year" => 1978)
);
}

private function getUnstructEvent() {
return array(
"schema" => "com.example_company/save-game/jsonschema/1.0.2",
"schema" => "com.example_company/save-game/jsonschema/1-0-2",
"data" => array("save_id" => "4321", "level" => 23, "difficultyLevel" => "HARD", "dl_content" => True)
);
}
Expand Down

0 comments on commit b1f7532

Please sign in to comment.