Skip to content

Commit

Permalink
fixed build error and added isFirstAgm property
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulGarewal committed Oct 23, 2023
1 parent 104020e commit 1d3a02d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/registry_schemas/example_data/schema_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2715,7 +2715,7 @@
}

AGM_EXTENSION = {
'year' = '2023'
'year': = '2023'
}

# build complete list of filings with names, for use in the generic test_valid_filing() test
Expand Down
4 changes: 4 additions & 0 deletions src/registry_schemas/schemas/agm_extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
"year": {
"type": "string",
"description": "Year of AGM Extension Request, longest extension granted at one time is six months."
},
"isFirstAgm": {
"type": "boolean",
"title": "Is this the first AGM?"
}
}
}
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_agm_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ def test_validate_no_agm_year():
print(errors)

assert not is_valid

0 comments on commit 1d3a02d

Please sign in to comment.