Skip to content

Commit

Permalink
change user comp for saml uc
Browse files Browse the repository at this point in the history
  • Loading branch information
clauyan committed Nov 13, 2024
1 parent 5416a3d commit d448a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loadtest/usecases/2_goto-sp-saml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { get } from "k6/http";
import { getDefaultOptions } from "../util/config.ts";
import { loadPage, login } from "../util/page.ts";
import { wrapTestFunction } from "../util/usecase-wrapper.ts";
import { getDefaultAdminMix } from "../util/users.ts";
import { UserMix } from "../util/users.ts";

export const options = {
...getDefaultOptions(),
Expand All @@ -13,7 +13,7 @@ const serviceProviderName = "School-SH";

export default wrapTestFunction(main);

function main(users = getDefaultAdminMix()) {
function main(users = new UserMix({ LEHR: 1000 })) {
const { providers } = login(users.getLogin());

const response = group("follow link", () => {
Expand Down

0 comments on commit d448a51

Please sign in to comment.