Skip to content

Commit

Permalink
resolves linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
radville committed Aug 28, 2024
1 parent 66759e7 commit ee6f48d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/uuidtools/uuid_parsing_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@
it "should correctly parse raw bytes" do
# NOTE: Short Input
expect(UUIDTools::UUID.new(0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0])).to eql(
UUIDTools::UUID.parse_raw(+""))
UUIDTools::UUID.parse_raw(+"")
)

# NOTE: Nil Input
expect(UUIDTools::UUID.parse_raw(
+"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
)).to be_nil_uuid
expect(UUIDTools::UUID.parse_raw(+"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"))
.to be_nil_uuid

# NOTE: Realistic Input
uuid = UUIDTools::UUID.timestamp_create
Expand Down

0 comments on commit ee6f48d

Please sign in to comment.