Skip to content

Commit

Permalink
Merge branch 'code-differently:main' into Lesson7
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron2278 authored Mar 18, 2024
2 parents 083dc6b + d6a3143 commit 5c966a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 1 addition & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,8 @@
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers-contrib/features/ts-node:1": {},
"ghcr.io/devcontainers/features/sshd:1": {},
"ghcr.io/meaningful-ooo/devcontainer-features/homebrew:2": {
"version": "latest",
"shallow": false
}
"ghcr.io/devcontainers/features/sshd:1": {}
},
"postCreateCommand": "yarn global add @devcontainers/cli && brew install neovim",
"portsAttributes": {
"80": {
"requireLocalPort": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.codedifferently.lesson8;

import static org.assertj.core.api.Assertions.assertThat;
import static com.codedifferently.lesson8.Lesson8.LinkedListNode;
import static com.codedifferently.lesson8.Lesson8.BinaryTreeNode;
import static com.codedifferently.lesson8.Lesson8.LinkedListNode;
import static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.Test;

Expand Down Expand Up @@ -51,4 +51,4 @@ void testContainsDuplicates() {

assertThat(result).isTrue();
}
}
}

0 comments on commit 5c966a7

Please sign in to comment.