Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
martenson committed Mar 15, 2024
1 parent 5ff83d8 commit 089a595
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("ObjectStoreRestrictionSpan", () => {
propsData: { isPrivate: true },
localVue,
});
expect(wrapper.find(".stored-how").text()).toMatch("restricted to a single user");
expect(wrapper.find(".stored-how").text()).toMatch("private");
expect(wrapper.find(".stored-how").attributes("title")).toBeTruthy();
});

Expand All @@ -22,7 +22,7 @@ describe("ObjectStoreRestrictionSpan", () => {
propsData: { isPrivate: false },
localVue,
});
expect(wrapper.find(".stored-how").text()).toMatch("allows standard Galaxy sharing features");
expect(wrapper.find(".stored-how").text()).toMatch("sharable");
expect(wrapper.find(".stored-how").attributes("title")).toBeTruthy();
});
});

0 comments on commit 089a595

Please sign in to comment.