Skip to content

Commit

Permalink
chore (package.json): bump version of js-lib and fix breaking changes…
Browse files Browse the repository at this point in the history
… due to method rename (#333)
  • Loading branch information
mdelez authored Nov 20, 2020
1 parent d609bd5 commit a57b603
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@angular/platform-browser-dynamic": "~9.1.12",
"@angular/router": "~9.1.12",
"@ckeditor/ckeditor5-angular": "^1.2.3",
"@dasch-swiss/dsp-js": "1.0.0-rc.15",
"@dasch-swiss/dsp-js": "1.0.0-rc.16",
"@dasch-swiss/dsp-ui": "1.0.0-rc.11",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ describe('ResourceInstanceFormComponent', () => {
() => {
let resource = new ReadResource();

MockResource.getTestthing().subscribe((res) => {
MockResource.getTestThing().subscribe((res) => {
resource = res;
});

Expand Down Expand Up @@ -489,7 +489,7 @@ describe('ResourceInstanceFormComponent', () => {

testHostComponent.resourceInstanceFormComponent.propertiesAsArray = new Array<ResourcePropertyDefinition>();

MockResource.getTestthing().subscribe( res => {
MockResource.getTestThing().subscribe( res => {
const resourcePropDef = (res.entityInfo as ResourceClassAndPropertyDefinitions).getAllPropertyDefinitions()[9];
testHostComponent.resourceInstanceFormComponent.propertiesAsArray.push(resourcePropDef as ResourcePropertyDefinition);
});
Expand Down

0 comments on commit a57b603

Please sign in to comment.