DEV: Fix missing require in spec/support/fake_s3 (#27399)

When running ` rspec spec/services/external_upload_manager_spec.rb`
in the development environment, tests were failing with the following
error:

```
NameError:
  uninitialized constant FakeS3::Aws
```
This commit is contained in:
Alan Guo Xiang Tan 2024-06-10 14:02:48 +08:00 committed by GitHub
parent 8cf4ed5f88
commit 95ed8d05bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,7 @@
# frozen_string_literal: true
require "aws-sdk-s3"
class FakeS3
attr_reader :s3_client