Fix a typo in the client spec

This commit is contained in:
Wilson Silva 2024-04-05 14:48:49 +01:00
parent 0497878d54
commit 61eb0459d4
No known key found for this signature in database
GPG Key ID: 65135F94E23F82C8

View File

@ -27,8 +27,8 @@ RSpec.describe Nostr::Client do
after { stop }
describe '.new' do
it 'creates an instance of a relay' do
client = described_class.new
it 'creates an instance of a client' do
expect(client).to be_an_instance_of(described_class)
end