Skip to content

Commit

Permalink
fix: Updated descriptions for few APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinshahfws committed Aug 29, 2024
1 parent 571923f commit ef294d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sdks/core/sdk.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"module": "SecondScreen",
"use": [
"xrn:firebolt:capability:protocol:dial",
"xrn:firebolt:capability:device:info"
"xrn:firebolt:capability:secondscreen:protocol"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions src/sdks/core/test/suite/device.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,17 @@ test("Device.make()", () => {
});

test("Device.hdcp()", () => {
const expectedOutput: Device.BooleanMap = {
const expectedOutput: Device.HDCPVersionMap = {
"hdcp1.4": true,
"hdcp2.2": true,
};
return Device.hdcp().then((res: Device.BooleanMap) => {
return Device.hdcp().then((res: Device.HDCPVersionMap) => {
expect(res).toEqual(expectedOutput);
});
});

test("Device.hdcp(subscriber)", () => {
return Device.hdcp((supportedHdrProfiles: Device.BooleanMap) => {}).then(
return Device.hdcp((supportedHdrProfiles: Device.HDCPVersionMap) => {}).then(
(res: number) => {
expect(res > 0).toBe(true);
}
Expand Down

0 comments on commit ef294d0

Please sign in to comment.