-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix bug when sort repos on org home page login with non-admin #6741
Conversation
4bc8c4b
to
a6daf03
Compare
integrations/org_test.go
Outdated
|
||
var ( | ||
users = []string{"user1", "user2"} | ||
kases = map[string][]string{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kases = map[string][]string{ | |
cases = map[string][]string{ |
integrations/org_test.go
Outdated
for _, user := range users { | ||
t.Run(user, func(t *testing.T) { | ||
session := loginUser(t, user) | ||
for sortBy, repos := range kases { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for sortBy, repos := range kases { | |
for sortBy, repos := range cases { |
@mrsdizzie done. |
Codecov Report
@@ Coverage Diff @@
## master #6741 +/- ##
==========================================
+ Coverage 40.82% 40.98% +0.16%
==========================================
Files 421 421
Lines 57910 57915 +5
==========================================
+ Hits 23640 23738 +98
+ Misses 31131 31018 -113
- Partials 3139 3159 +20
Continue to review full report at Codecov.
|
Will fix #6511 with integration tests