diff --git a/WorkshopGuide.md b/WorkshopGuide.md
index 2292787..ae5b0a8 100644
--- a/WorkshopGuide.md
+++ b/WorkshopGuide.md
@@ -19,19 +19,19 @@ In this workshop, you will:
## Table of Contents
[Workshop Requirements](#H_34C2FB57)
- [Part 1: Getting the workshop files and configuring GitHub for automated testing and results publishing](#TMP_3984)
+ [Part 1: Getting the workshop files and configuring GitHub for automated testing and results publishing](#TMP_95f1)
- [Part 2: Generating your first tests](#TMP_95f4)
+ [Part 2: Generating your first tests](#TMP_080d)
- [Part 3: Finding existing tests and measuring coverage](#TMP_8279)
+ [Part 3: Finding existing tests and measuring coverage](#TMP_247c)
- [Part 4: Updating badges, committing our changes, and pushing to GitHub](#TMP_1d39)
+ [Part 4: Updating badges, committing our changes, and pushing to GitHub](#TMP_0c93)
- [Part 5: Create a pull request, watch GitHub Actions automatically test your changes and publish results](#TMP_2a59)
+ [Part 5: Create a pull request, watch GitHub Actions automatically test your changes and publish results](#TMP_1f7d)
- [Part 6: Compile the App in the CI workflow and download the artifact](#TMP_2c41)
+ [Part 6: Compile the App in the CI workflow and download the artifact](#TMP_2778)
- [Workshop wrap\-up and additional information](#TMP_86ec)
+ [Workshop wrap\-up and additional information](#TMP_8fab)
@@ -56,7 +56,7 @@ The following steps cover all of the things you will need to successfully comple
- The workshop leverages the free repository and CI capabilities offered by GitHub and GitHub Actions
- Go to: [**https://github.com/signup**](https://github.com/signup)
-
+
# Part 1: Getting the workshop files and configuring GitHub for automated testing and results publishing
@@ -308,7 +308,7 @@ Click on the 'Run App' shortcut to start the app in MATLAB:

-
+
# Part 2: Generating your first tests
@@ -529,7 +529,7 @@ Congratulations! You just created multiple tests for your MATLAB code!
It was easier than you thought, right?
-
+
# Part 3: Finding existing tests and measuring coverage
@@ -868,7 +868,7 @@ It looks like we've achieved full statement coverage for [`generateSimFun`](./co

-
+
# Part 4: Updating badges, committing our changes, and pushing to GitHub
@@ -1088,7 +1088,7 @@ At this point, all of your changes will be pushed to GitHub.

-
+
# Part 5: Create a pull request, watch GitHub Actions automatically test your changes and publish results
@@ -1249,7 +1249,7 @@ The code coverage report looks like this:
Now anyone that visits your repository can immediately see the quality of your code, explore your test and code coverage results, and will have more confidence in the code you are writing!
-
+
# Part 6: Compile the App in the CI workflow and download the artifact
@@ -1353,7 +1353,7 @@ You can now download the CTF file and upload it to your Web App Server using you
[https://vdi\-wd1ah2\-348.dhcp.mathworks.com:9999/webapps/home/login.html](https://vdi-wd1ah2-348.dhcp.mathworks.com:9999/webapps/home/login.html)
-
+
# Workshop wrap\-up and additional information
diff --git a/code/TMDDApp.mlapp b/code/TMDDApp.mlapp
index d6145aa..95e8b21 100644
Binary files a/code/TMDDApp.mlapp and b/code/TMDDApp.mlapp differ
diff --git a/tests/tTMDDApp.m b/tests/tTMDDApp.m
index a4d33a2..56cc3f9 100644
--- a/tests/tTMDDApp.m
+++ b/tests/tTMDDApp.m
@@ -32,7 +32,7 @@ function testStartup(testCase)
function testChangeDosingAmountManualUpdate(testCase)
% Deactivate automatic plot update
- testCase.App.AutomaticupdateCheckBox.Value = false;
+ testCase.App.AutomaticUpdateSwitch.Value = "Off";
oldlhRO_XData = testCase.App.ROViewObj.lhRO.XData;
oldlhRO_YData = testCase.App.ROViewObj.lhRO.YData;