Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' of https://github.com/SalesforceLabs/Kickboard in…
Browse files Browse the repository at this point in the history
…to main
  • Loading branch information
Eric Schultz committed Jul 20, 2021
2 parents 917c288 + 70691cc commit 3fd8fcc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions force-app/test/default/classes/KickboardCtrlTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ public class KickboardCtrlTest {
static void checkBoardRetrieval() {
Lane__c l = [SELECT Id FROM Lane__c];
Test.startTest();
List<Board__c> boards = KickboardCtrl.getBoards(l.Id);
system.assertEquals(1, boards.size());
System.runAs(new User(Id = UserInfo.getUserId())) {
List<Board__c> boards = KickboardCtrl.getBoards(l.Id);
system.assertEquals(1, boards.size());
}
Test.stopTest();
}

Expand Down
6 changes: 3 additions & 3 deletions sfdx-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"path": "force-app",
"default": true,
"package": "Kickboard",
"versionName": "Initial Release",
"versionNumber": "0.1.0.NEXT"
"versionName": "Version 1.0.0",
"versionNumber": "1.0.0.NEXT"
}
],
"name": "kickboard",
Expand All @@ -14,6 +14,6 @@
"sourceApiVersion": "52.0",
"packageAliases": {
"Kickboard": "0Ho5e000000XZZLCA4",
"Kickboard@0.1.0-7": "04t5e0000002tDmAAI"
"Kickboard@1.0.0-1": "04t5e0000003VcuAAE"
}
}

0 comments on commit 3fd8fcc

Please sign in to comment.