diff options
author | 2012-05-17 22:41:59 +0200 | |
---|---|---|
committer | 2012-05-27 19:54:29 +0200 | |
commit | a83b53bbb807aa01b490ca56e186e69e4befc08c (patch) | |
tree | fab5edc774b8d2abe0e35b24071a959d1252773e /pygithub3/tests | |
parent | add build/ to .gitignore (diff) | |
download | python-github3-a83b53bbb807aa01b490ca56e186e69e4befc08c.tar.xz python-github3-a83b53bbb807aa01b490ca56e186e69e4befc08c.zip |
add Pull Request to `Issue` resources
Diffstat (limited to 'pygithub3/tests')
-rw-r--r-- | pygithub3/tests/resources/test_issues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/tests/resources/test_issues.py b/pygithub3/tests/resources/test_issues.py index 0bef3c1..ae572af 100644 --- a/pygithub3/tests/resources/test_issues.py +++ b/pygithub3/tests/resources/test_issues.py @@ -8,7 +8,7 @@ from pygithub3.resources.issues import Label class TestLabel(TestCase): def test_is_valid_color(self): - valid_colors = ['BADA55', 'FFFFFF', '45DFCA'] + valid_colors = ['BADa55', 'FF42FF', '45DFCA'] for color in valid_colors: self.assertTrue(Label.is_valid_color(color)) |