Skip to content

Commit

Permalink
fix bugs from accidental refactor in VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-hodgson committed Jan 8, 2025
1 parent d31ed8a commit f9f6bff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import org.sagebionetworks.web.client.place.DataAccessManagementPlace;
import org.sagebionetworks.web.client.place.DataCatalogPagePlace;
import org.sagebionetworks.web.client.place.Down;
import org.sagebionetworks.web.client.place.DownloadCartPlace;
import org.sagebionetworks.web.client.place.EmailInvitation;
import org.sagebionetworks.web.client.place.ErrorPlace;
import org.sagebionetworks.web.client.place.FollowingPlace;
Expand Down Expand Up @@ -94,7 +95,7 @@
PasswordResetSignedTokenPlace.Tokenizer.class,
DataAccessApprovalTokenPlace.Tokenizer.class,
PersonalAccessTokenPlace.Tokenizer.class,
DataCatalogPagePlace.Tokenizer.class,
DownloadCartPlace.Tokenizer.class,
DataAccessManagementPlace.Tokenizer.class,
OAuthClientEditorPlace.Tokenizer.class,
TwoFactorAuthPlace.Tokenizer.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.sagebionetworks.web.client.PopupUtilsView;
import org.sagebionetworks.web.client.PortalGinInjector;
import org.sagebionetworks.web.client.SynapseJavascriptClient;
import org.sagebionetworks.web.client.place.DataCatalogPagePlace;
import org.sagebionetworks.web.client.place.DownloadCartPlace;
import org.sagebionetworks.web.client.place.PeopleSearch;
import org.sagebionetworks.web.client.place.Search;
import org.sagebionetworks.web.client.place.Synapse;
Expand Down Expand Up @@ -92,7 +92,7 @@ public void testConstructor() {

@Test
public void testSetPlace() {
presenter.setPlace(new DataCatalogPagePlace(""));
presenter.setPlace(new DownloadCartPlace(""));

verify(mockView).render();
}
Expand Down

0 comments on commit f9f6bff

Please sign in to comment.