Skip to content

Commit 4a13da9

Browse files
committed
Don't check simple when comparing term definitions.
Relates to w3c/json-ld-api#570.
1 parent d7c54af commit 4a13da9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Run tests
3333
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
3434
- name: Coveralls GitHub Action
35-
uses: coverallsapp/github-action@v1.1.2
35+
uses: coverallsapp/github-action@v2
3636
if: "matrix.ruby == '3.0'"
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -59,7 +59,7 @@ jobs:
5959
- name: Run tests
6060
run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
6161
- name: Coveralls GitHub Action
62-
uses: coverallsapp/github-action@v1.1.2
62+
uses: coverallsapp/github-action@v2
6363
if: "matrix.ruby == '3.0'"
6464
with:
6565
github-token: ${{ secrets.GITHUB_TOKEN }}

lib/json/ld/context.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2322,7 +2322,6 @@ def ==(other)
23222322
language_mapping == other.language_mapping &&
23232323
direction_mapping == other.direction_mapping &&
23242324
reverse_property == other.reverse_property &&
2325-
simple == other.simple &&
23262325
index == other.index &&
23272326
context == other.context &&
23282327
prefix? == other.prefix? &&

0 commit comments

Comments
 (0)