Skip to content

Commit 08a9824

Browse files
author
Marc-André Rivet
committed
.
1 parent 0032d96 commit 08a9824

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
cd dash-main && pip install -e .[dev,testing] --progress-bar off && cd ..
4242
cd dash-main/\@plotly/dash-generator-test-component-nested && npm ci && npm run build && sudo R CMD INSTALL . && cd ../../..
4343
cd dash-main/\@plotly/dash-generator-test-component-standard && npm ci && npm run build && sudo R CMD INSTALL . && cd ../../..
44-
sudo Rscript -e 'library(dashGeneratorTestComponentNested); print(dgtc_nestedMyComponent)'
45-
sudo Rscript -e 'library(dashGeneratorTestComponentStandard); print(dgtc_standardMyComponent)'
44+
sudo Rscript -e 'library(dashGeneratorTestComponentNested); print(dgtc_nestedMyNestedComponent)'
45+
sudo Rscript -e 'library(dashGeneratorTestComponentStandard); print(dgtc_standardMyStandardComponent)'
4646
export PATH=$PATH:/home/circleci/.local/bin/
4747
pytest --nopercyfinalize --junitxml=test-reports/dashr.xml tests/integration/
4848
- store_artifacts:

tests/integration/test_generation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
1111
app <- Dash$new()
1212
app$layout(htmlDiv(list(
13-
dgtc_standardMyComponent(id="standard", value="Standard"),
14-
dgtc_nestedMyComponent(id="nested", value="Nested")
13+
dgtc_standardMyStandardComponent(id="standard", value="Standard"),
14+
dgtc_nestedMyNestedComponent(id="nested", value="Nested")
1515
)))
1616
1717
app$run_server()

0 commit comments

Comments
 (0)