From 6236d16d27288d009584e13afd03df9fa2cb1251 Mon Sep 17 00:00:00 2001 From: valorant-dhruv <78591597+valorant-dhruv@users.noreply.github.com> Date: Mon, 26 Aug 2024 23:15:27 +0000 Subject: [PATCH 1/3] testing workflow --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 5c26c5e..ba4f154 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,5 @@ #Bubble sort +#To test workflow def swap(arr,first,second): temp=arr[first] From bf3c5144e6bcab88031c82c8479669f1555134c3 Mon Sep 17 00:00:00 2001 From: Sweekar Burji Date: Mon, 26 Aug 2024 19:27:04 -0400 Subject: [PATCH 2/3] Update bubble_test.py --- bubble_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubble_test.py b/bubble_test.py index 3baaff0..948e86f 100644 --- a/bubble_test.py +++ b/bubble_test.py @@ -8,5 +8,5 @@ def testsort(): def testsort2(): tosort2=[10,14,12,16,100] expectedsort2=[12,10,14,16,100] - assert bubblesort(tosort2)==expectedsort2 + #assert bubblesort(tosort2)==expectedsort2 From c23f82047b80a0308092b5d55be38c85a9a218df Mon Sep 17 00:00:00 2001 From: Sweekar Burji Date: Mon, 26 Aug 2024 19:28:17 -0400 Subject: [PATCH 3/3] Update bubble_test.py --- bubble_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubble_test.py b/bubble_test.py index 948e86f..3baaff0 100644 --- a/bubble_test.py +++ b/bubble_test.py @@ -8,5 +8,5 @@ def testsort(): def testsort2(): tosort2=[10,14,12,16,100] expectedsort2=[12,10,14,16,100] - #assert bubblesort(tosort2)==expectedsort2 + assert bubblesort(tosort2)==expectedsort2