Spaces:
Runtime error
Runtime error
Fixed typo in TestRunner page
Browse files- pages/030_Test_Runner.py +2 -2
pages/030_Test_Runner.py
CHANGED
@@ -22,7 +22,7 @@ def display_custom_test():
|
|
22 |
st.write("### Number of questions to ask:")
|
23 |
q_count = st.slider(label="Number of questions", min_value=1, max_value=TestGenerator.question_count(), step=1, key="custom_q_count")
|
24 |
|
25 |
-
st.write("### Number of threads to use for
|
26 |
thread_count = st.slider(label="Number of threads", min_value=1, max_value=64, step=1, value=16, key="custom_thread_slider")
|
27 |
|
28 |
st.write("### Tag:")
|
@@ -71,7 +71,7 @@ def display_pricing_fact_test():
|
|
71 |
st.write("### Number of questions to ask:")
|
72 |
q_count = st.slider(label="Number of questions", min_value=1, max_value=len(question_price_pairs), step=1, key="pricing_q_count")
|
73 |
|
74 |
-
st.write("### Number of threads to use for
|
75 |
thread_count = st.slider(label="Number of threads", min_value=1, max_value=64, step=1, value=16, key="pricing_thread_slider")
|
76 |
|
77 |
st.write("### Tag:")
|
|
|
22 |
st.write("### Number of questions to ask:")
|
23 |
q_count = st.slider(label="Number of questions", min_value=1, max_value=TestGenerator.question_count(), step=1, key="custom_q_count")
|
24 |
|
25 |
+
st.write("### Number of threads to use for testing:")
|
26 |
thread_count = st.slider(label="Number of threads", min_value=1, max_value=64, step=1, value=16, key="custom_thread_slider")
|
27 |
|
28 |
st.write("### Tag:")
|
|
|
71 |
st.write("### Number of questions to ask:")
|
72 |
q_count = st.slider(label="Number of questions", min_value=1, max_value=len(question_price_pairs), step=1, key="pricing_q_count")
|
73 |
|
74 |
+
st.write("### Number of threads to use for testing:")
|
75 |
thread_count = st.slider(label="Number of threads", min_value=1, max_value=64, step=1, value=16, key="pricing_thread_slider")
|
76 |
|
77 |
st.write("### Tag:")
|