Skip to content

Commit

Permalink
EPMRPP-96177 || Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski committed Oct 31, 2024
1 parent 54ac2ec commit 138041f
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/test/resources/db/fill/launch/launch-fill.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,22 @@ VALUES ('log uid', now(), 'message', 3, null, now(), 40000, null, 2);

INSERT INTO public.launch(id, uuid, project_id, user_id, name, start_time, end_time, last_modified,
mode, status)
VALUES (300, 'uuid5', 2, 2, 'finished launch', now(), now(), now(), 'DEFAULT', 'FAILED');
VALUES (300, 'uuid5', 2, 2, 'finished launch', now(), now(), now(), 'DEFAULT', 'FAILED');

INSERT INTO public.clusters(id, index_id, project_id, launch_id, message)
VALUES (1, 1, 2, 1, 'msg')

INSERT INTO public.clusters_test_item(cluster_id, item_id)
VALUES (1, 1)

INSERT INTO public.clusters(id, index_id, project_id, launch_id, message)
VALUES (1, 2, 2, 1, 'msg2')

INSERT INTO public.clusters_test_item(cluster_id, item_id)
VALUES (2, 2)

INSERT INTO public.clusters(id, index_id, project_id, launch_id, message)
VALUES (1, 3, 2, 1, 'msg3')

INSERT INTO public.clusters_test_item(cluster_id, item_id)
VALUES (3, 3)

0 comments on commit 138041f

Please sign in to comment.