Skip to content

Commit 8f7bad2

Browse files
authored
Merge pull request #19 from OneSignal/choubacha-adds-ruby-3-3
Adds ruby 3.3 to mix of tests and corrects a clippy lint warning.
2 parents b1a4355 + 6366455 commit 8f7bad2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- "3.0"
1717
- "3.1"
1818
- "3.2"
19+
- "3.3"
1920

2021
steps:
2122
- name: Check out code

src/ser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,5 +400,5 @@ where
400400
Input: Serialize + ?Sized,
401401
Output: TryConvert,
402402
{
403-
TryConvert::try_convert(input.serialize(Serializer)?).map_err(Into::into)
403+
TryConvert::try_convert(input.serialize(Serializer)?)
404404
}

0 commit comments

Comments
 (0)