Skip to content

Commit

Permalink
Fix for #261 - remove isLoaded from project tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Winger authored and Eric Winger committed Dec 18, 2018
1 parent 1182422 commit bf52d97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions sources/JadeiteProjectBrowserTestCase.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1194,8 +1194,7 @@ test_issue261
[self selectServiceNamed: 'Izmir' in: self projectListPresenter.
view := self projectsPresenter projectInfoTab view.
self assert: (view columns first contentFromRow: (view list at: 1)) equals: 'Izmir'.
self assert: (view columns first contentFromRow: (view list at: 5)). "isDirty"
self assert: (view columns first contentFromRow: (view list at: 6)) "isLoaded"]
self assert: (view columns first contentFromRow: (view list at: 5)). "isDirty"]
ensure: [self projectsPresenter basicUnloadProjects: #('Izmir')]!

test_literalReferences
Expand Down
3 changes: 1 addition & 2 deletions sources/JadeiteProjectsBrowserPresenter.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1854,8 +1854,7 @@ updateProjectInfo
array nextPut: (Array with: service with: 'sha').
array nextPut: (Array with: service with: 'branch').
array nextPut: (Array with: service with: 'isSkew').
array nextPut: (Array with: service with: 'isDirty').
array nextPut: (Array with: service with: 'isLoaded').
array nextPut: (Array with: service with: 'isDirty').
service == services last ifFalse: [array nextPut: (Array with: RowanProjectService new with: nil)]].
projectInfoTab list: array contents.
projectInfoTab ensureVisible.!
Expand Down

0 comments on commit bf52d97

Please sign in to comment.