GithubLatest: Fix test for GithubRelease changes

`GithubLatest` was updated to use parts of `GithubRelease` and this
works fine within `brew livecheck` (since we `require` all the
strategies) but we need to explicitly `require` `GithubRelease` in
the `GithubLatest` test file now. Without this, we encounter errors
in parts of `GithubLatest` where `GithubRelease` is referenced.
This commit is contained in:
Sam Ford 2023-05-15 23:28:43 -04:00
parent 5139b9b468
commit db7a6baa33
No known key found for this signature in database
GPG Key ID: 7AF5CBEE1DD6F76D

View File

@ -1,5 +1,6 @@
# frozen_string_literal: true
require "livecheck/strategy/github_release"
require "livecheck/strategy/github_latest"
describe Homebrew::Livecheck::Strategy::GithubLatest do