Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #5381 Talkback reads 14 underscore in a question in What is a ratio chapter #5553

Merged
merged 39 commits into from
Dec 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d819e70
Merge pull request #1 from oppia/develop
subhajitxyz Jul 23, 2024
c6f54ea
Merge branch 'oppia:develop' into develop
subhajitxyz Jul 27, 2024
d44015b
Merge remote-tracking branch 'upstream/develop' into develop
subhajitxyz Aug 17, 2024
d604bc2
Merge pull request #2 from oppia/develop
subhajitxyz Aug 26, 2024
cc0ddef
Merge pull request #3 from oppia/develop
subhajitxyz Aug 26, 2024
52c6bb1
Merge pull request #4 from oppia/develop
subhajitxyz Aug 29, 2024
773c810
Merge remote-tracking branch 'upstream/develop' into develop
subhajitxyz Sep 5, 2024
56af5ae
Merge pull request #5 from oppia/develop
subhajitxyz Sep 16, 2024
3883f70
Merge pull request #6 from oppia/develop
subhajitxyz Sep 27, 2024
10c8e6e
Fix #5404: Migrate away from onBackPressed for remaining activities (…
dattasneha Oct 3, 2024
5e140e9
Fix #5404: Migrate away from onBackPressed for RevisionCardActivity (…
dattasneha Oct 9, 2024
b4ad7a3
Merge branch 'oppia:develop' into develop
subhajitxyz Oct 11, 2024
238645d
Merge pull request #8 from oppia/develop
subhajitxyz Oct 12, 2024
8d0328c
Add replaceRegexWithBlank function
subhajitxyz Oct 12, 2024
16230b7
Merge remote-tracking branch 'upstream/develop' into fix-talkback-read
subhajitxyz Oct 12, 2024
5a546b9
Merge pull request #9 from oppia/develop
subhajitxyz Nov 3, 2024
95d5d65
add test
subhajitxyz Nov 10, 2024
8c78531
correct klint
subhajitxyz Nov 10, 2024
94929f2
correct formatting
subhajitxyz Nov 10, 2024
6d0bea3
add spaces between functions
subhajitxyz Nov 10, 2024
2732fff
Merge branch 'develop' into fix-talkback-read
subhajitxyz Nov 10, 2024
944474b
add audio datasource
subhajitxyz Nov 10, 2024
7ee17ee
Merge branch 'fix-talkback-read' of https://github.com/subhajitxyz/op…
subhajitxyz Nov 10, 2024
31c5db1
change audio filename
subhajitxyz Nov 11, 2024
8706dff
added shodowmediaplayer resetStaticState
subhajitxyz Nov 11, 2024
e48f898
correct formatting
subhajitxyz Nov 11, 2024
a393924
Merge branch 'develop' into fix-talkback-read
subhajitxyz Nov 19, 2024
b1ca8e1
Merge pull request #10 from oppia/develop
subhajitxyz Nov 19, 2024
f730578
Merge branch 'develop' into fix-talkback-read
adhiamboperes Dec 2, 2024
ad7e380
Merge pull request #11 from oppia/develop
subhajitxyz Dec 11, 2024
b938a4c
Fix #5508: Skipping redundant code coverage and APK/AAB report commen…
Rd4dev Dec 12, 2024
fc2f932
Fix part of #4865: Use profileId in classroom activity and presenter …
tobioyelekan Dec 16, 2024
35f937b
Merge branch 'oppia:develop' into develop
subhajitxyz Dec 17, 2024
81d54c8
Merge branch 'develop' into fix-talkback-read
subhajitxyz Dec 17, 2024
33f0a8f
add practice 5 data source
subhajitxyz Dec 17, 2024
4605b28
Merge branch 'fix-talkback-read' of https://github.com/subhajitxyz/op…
subhajitxyz Dec 17, 2024
47a67b3
correct audio file name
subhajitxyz Dec 18, 2024
7e59fd6
Merge branch 'develop' into fix-talkback-read
subhajitxyz Dec 18, 2024
a00ae61
Merge branch 'develop' into fix-talkback-read
adhiamboperes Dec 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add practice 5 data source
  • Loading branch information
subhajitxyz committed Dec 17, 2024
commit 33f0a8fe2502241c6fd442d8808b8af52544f7b0
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ import org.oppia.android.util.parser.image.TestGlideImageLoader
import org.oppia.android.util.threading.BackgroundDispatcher
import org.robolectric.annotation.Config
import org.robolectric.annotation.LooperMode
import org.robolectric.shadows.ShadowMediaPlayer
import java.io.IOException
import java.util.concurrent.TimeoutException
import javax.inject.Inject
Expand Down Expand Up @@ -225,7 +224,6 @@ class StateFragmentTest {

@After
fun tearDown() {
ShadowMediaPlayer.resetStaticState()
testCoroutineDispatchers.unregisterIdlingResource()
Intents.release()
}
Expand Down Expand Up @@ -5890,7 +5888,7 @@ class StateFragmentTest {
) { "Failed to create audio data source." }
val dataSource2 = checkNotNull(
createAudioDataSource(
explorationId = RATIOS_EXPLORATION_ID_0, audioFileName = "content-en-8ggy36yyyc.mp3"
explorationId = RATIOS_EXPLORATION_ID_0, audioFileName = "cfeedback_2-en-s3gr1eqm8i.mp3"
)
) { "Failed to create audio data source." }
addShadowMediaPlayerException(dataSource, IOException("Test does not have networking"))
Expand Down