We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a015e commit 77bc22dCopy full SHA for 77bc22d
github/projects_test.go
@@ -92,7 +92,7 @@ func TestProjectsService_UpdateProject(t *testing.T) {
92
Name: String("Project Name"),
93
Body: String("Project body."),
94
State: String("open"),
95
- Private: Bool(true),
+ Private: Bool(false),
96
97
OrganizationPermission: String("read"),
98
}
@@ -857,15 +857,15 @@ func TestProjectOptions_Marshal(t *testing.T) {
857
Body: String("body"),
858
State: String("state"),
859
OrganizationPermission: String("op"),
860
861
862
863
want := `{
864
"name": "name",
865
"body": "body",
866
"state": "state",
867
"organization_permission": "op",
868
- "private": true
+ "private": false
869
}`
870
871
testJSONMarshal(t, u, want)
0 commit comments