Skip to content

Commit

Permalink
update terra jupyter python smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaldo committed Sep 5, 2024
1 parent 9fa5420 commit 453d768
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terra-jupyter-python/tests/smoke_test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
"metadata": {},
"outputs": [],
"source": [
"output = !pip3 show pendulum\n",
"output = !pip3 show emoji\n",
"print(output) # Should show not yet installed.\n",
"assert(0 == output.count('Name: pendulum'))"
"assert(0 == output.count('Name: emoji'))"
]
},
{
Expand All @@ -96,7 +96,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install pendulum==2.1.2 --user --ignore-installed"
"%pip install emoji --user --ignore-installed"
]
},
{
Expand All @@ -105,9 +105,9 @@
"metadata": {},
"outputs": [],
"source": [
"output = !pip3 show pendulum\n",
"output = !pip3 show emoji\n",
"print(output) # Should show that it is now installed!\n",
"assert(1 == output.count('Name: pendulum'))"
"assert(1 == output.count('Name: emoji'))"
]
},
{
Expand Down

0 comments on commit 453d768

Please sign in to comment.