Remove the `has_wiki` property check from the private repositories unit tests as Wikis are no longer supported on the GitHub free tier.

Fixes #403
This commit is contained in:
Simon Heather 2023-04-21 01:20:35 +01:00 коммит произвёл GitHub
Родитель 516be0b4ca
Коммит d5094a0fc8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -88,7 +88,6 @@ Describe 'GitHubRepositories\New-GitHubRepository' {
$repo.homepage | Should -BeNullOrEmpty
$repo.has_issues | Should -BeTrue
$repo.has_projects | Should -BeTrue
$repo.has_Wiki | Should -BeTrue
$repo.has_discussions | Should -BeFalse
$repo.allow_squash_merge | Should -BeTrue
$repo.allow_merge_commit | Should -BeTrue
@ -284,7 +283,6 @@ Describe 'GitHubRepositories\New-GitHubRepository' {
$repo.homepage | Should -BeNullOrEmpty
$repo.has_issues | Should -BeTrue
$repo.has_projects | Should -BeTrue
$repo.has_Wiki | Should -BeTrue
$repo.allow_squash_merge | Should -BeTrue
$repo.allow_merge_commit | Should -BeTrue
$repo.allow_rebase_merge | Should -BeTrue