diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/fetchCardsIntoColumns..st b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/fetchCardsIntoColumns..st index 5a877a31..053478d1 100644 --- a/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/fetchCardsIntoColumns..st +++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/instance/fetchCardsIntoColumns..st @@ -5,6 +5,6 @@ fetchCardsIntoColumns: anOrderedCollection |cardsJson columnDict | cardsJson := (self api queryCardsfromProject: self projectId) asOrderedCollection. - columnDict := (anOrderedCollection collect: [:each| each id -> each]) asDictionary. + columnDict := (anOrderedCollection collect: [:each| each id -> each]) as: Dictionary. cardsJson do: [:each| SPBCard buildFromRemoteProject: each intoColumns: columnDict]. \ No newline at end of file diff --git a/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json b/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json index 8c2b1e28..88e533b6 100644 --- a/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json +++ b/Squello-Core.package/SPBNewGithubBoardProvider.class/methodProperties.json @@ -22,7 +22,7 @@ "deleteLabel:fromCard:" : "FP 6/18/2024 13:41", "deleteLabel:fromDraft:" : "FP 7/11/2024 13:11", "deleteLabel:fromIssue:" : "FP 6/19/2024 16:54", - "fetchCardsIntoColumns:" : "FP 6/17/2024 17:20", + "fetchCardsIntoColumns:" : "FP 7/11/2024 13:23", "getAssigneeString:" : "FP 6/18/2024 12:03", "getProjectId:user:" : "FP 6/15/2024 13:38", "listPossibleAssignees" : "FP 6/16/2024 17:44", diff --git a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testCreateNewCardInto.st b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testCreateNewCardInto.st index af744e7f..886c9ba6 100644 --- a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testCreateNewCardInto.st +++ b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testCreateNewCardInto.st @@ -2,5 +2,5 @@ tests-cards testCreateNewCardInto | dict | - dict := {'test' -> true} asDictionary. + dict := Dictionary newFromPairs: {'test'. true}. self assert: (provider createNewCard: dict into: SPBColumn new). \ No newline at end of file diff --git a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json index 3ae957df..5b228eb9 100644 --- a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json +++ b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json @@ -11,7 +11,7 @@ "testAssigneeUpdateString" : "FP 6/18/2024 12:03", "testCreateCardsFromColumn" : "FP 7/11/2024 12:06", "testCreateColumn" : "FP 7/11/2024 12:51", - "testCreateNewCardInto" : "FP 7/11/2024 12:09", + "testCreateNewCardInto" : "FP 7/11/2024 13:19", "testFetchCardIntoColumns" : "FP 7/11/2024 12:27", "testListPossibleAssignees" : "FP 7/9/2024 11:32", "testListPossibleLabels" : "FP 7/9/2024 11:37",