Skip to content

Commit

Permalink
Fixed pytest by removed dataset (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkim312 authored Oct 31, 2024
1 parent f84591c commit 4635887
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- Pytest error caused by removed hazard dataset [#182](https://github.com/IN-CORE/pyincore-viz/issues/182)

## [1.11.0] - 2024-10-23
### Added
- Apply Black formatter [#169](https://github.com/IN-CORE/pyincore-viz/issues/169)
Expand Down
4 changes: 2 additions & 2 deletions tests/pyincore_viz/test_pyincore_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ def test_visualize_model_earthquake(client):


def test_visualize_dataset_earthquake(client):
eq_hazard_id = "5ba8ed5cec23090435209069"
eq_hazard_id = "5b902cb273c3371e1236b36b"
viz.plot_earthquake(eq_hazard_id, client)
assert True


def test_visualize_dataset_earthquake_with_demand(client):
eq_hazard_id = "5ba8ed5cec23090435209069"
eq_hazard_id = "5b902cb273c3371e1236b36b"
viz.plot_earthquake(eq_hazard_id, client, "0.4 SA")
assert True

Expand Down

0 comments on commit 4635887

Please sign in to comment.