Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions phonenumberutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ func Test_IsValidNumber(t *testing.T) {
err: nil,
isValid: true,
region: "CN",
}, {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What you did here was to add a new number set to the testcases and not necessarily add Support new number 179 for CN. I assume the issue you are attempting to fix is the invalid number error you get when you provide a CN number that starts with 179 right?

input: "+8617910517228",
err: nil,
isValid: true,
region: "CN",
},
}

Expand Down